Improve the diagnostic for -Wcustom-atomic-properties. Suggestion by Fariborz!
[clang.git] / test / SemaObjC / objc2-warn-weak-decl.m
blob22a3fca91ba5ec5193271c3f58c9b4c5b42c3532
1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
2 // RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
3 struct S {
4         __weak id  p;  // expected-warning {{__weak attribute cannot be specified on a field declaration}}
5 };
7 int main ()
9   __weak id  local;  // expected-warning {{__weak attribute cannot be specified on an automatic variable}}