2017-02-14 07:09:56 +08:00
|
|
|
// RUN: %clang_cc1 -std=gnu++98 -fobjc-arc -isystem %S/Inputs %s -verify
|
2011-06-16 07:02:42 +08:00
|
|
|
|
|
|
|
#include <arc-system-header.h>
|
|
|
|
|
|
|
|
void f(A* a) {
|
|
|
|
a->data.void_ptr = 0;
|
2015-10-28 13:03:19 +08:00
|
|
|
a->data.a_b.b = 0; // expected-error{{'a_b' is unavailable in ARC}}
|
2011-06-16 07:02:42 +08:00
|
|
|
}
|
2015-10-28 13:03:19 +08:00
|
|
|
// expected-note@arc-system-header.h:10{{field has non-trivial ownership qualification}}
|