xref: /llvm-project/clang/test/SemaObjC/objc2-warn-weak-decl.m (revision 7deaeb2a056c1756ce6f2550d2ebb91b81b9ff29)
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
3struct S {
4	__weak id  p;  // expected-warning {{__weak attribute cannot be specified on a field declaration}}
5};
6
7int main (void)
8{
9  __weak id  local;  // expected-warning {{Objective-C GC does not allow weak variables on the stack}}
10}
11
12