blob: 107b5b5a53d247ec4ae869b09e29994589591227 [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 -fobjc-arc -isystem %S/Inputs %s -verify
John McCallf85e1932011-06-15 23:02:42 +00002
3#include <arc-system-header.h>
4
5void f(A* a) {
6 a->data.void_ptr = 0;
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00007 a->data.a_b.b = 0; // expected-error{{'a_b' is unavailable: this system field has retaining ownership}}
John McCallf85e1932011-06-15 23:02:42 +00008}
9// Silly location below
10// expected-note{{declaration has been explicitly marked unavailable here}}