blob: 8fde620e71e86e7d9db472050a7ee0baffe3c637 [file] [log] [blame]
Fariborz Jahanian7b5b3172009-02-21 19:44:02 +00001// RUN: clang -fsyntax-only -fobjc-gc -verify %s
2struct 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