blob: bd59c6613304a47ea873f382a8b472b780ae3979 [file] [log] [blame]
Fariborz Jahanian1147c5e2009-12-14 17:36:25 +00001// RUN: clang -cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
Fariborz Jahanian7b5b3172009-02-21 19:44:02 +00002struct S {
3 __weak id p; // expected-warning {{__weak attribute cannot be specified on a field declaration}}
4};
5
6int main ()
7{
8 __weak id local; // expected-warning {{__weak attribute cannot be specified on an automatic variable}}
9}
10