blob: 75bed428f6f67f86b82f42b991cdc7adf5b048b8 [file] [log] [blame]
John McCallf85e1932011-06-15 23:02:42 +00001// RUN: %clang_cc1 -fobjc-arc -fobjc-nonfragile-abi -isystem %S/Inputs %s -verify
2
3#include <arc-system-header.h>
4
5void f(A* a) {
6 a->data.void_ptr = 0;
7 a->data.a_b.b = 0; // expected-error{{'a_b' is unavailable: this system field has retaining lifetime}}
8}
9// Silly location below
10// expected-note{{declaration has been explicitly marked unavailable here}}