blob: 22a3fca91ba5ec5193271c3f58c9b4c5b42c3532 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
Fariborz Jahanianbf1ee342010-05-18 18:24:06 +00002// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
Fariborz Jahanian7b5b3172009-02-21 19:44:02 +00003struct S {
4 __weak id p; // expected-warning {{__weak attribute cannot be specified on a field declaration}}
5};
6
7int main ()
8{
9 __weak id local; // expected-warning {{__weak attribute cannot be specified on an automatic variable}}
10}
11