xref: /aosp_15_r20/external/clang/test/SemaObjC/objc2-warn-weak-decl.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
2*67e74705SXin Li// RUN: %clang_cc1 -x objective-c++ -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
3*67e74705SXin Listruct S {
4*67e74705SXin Li	__weak id  p;  // expected-warning {{__weak attribute cannot be specified on a field declaration}}
5*67e74705SXin Li};
6*67e74705SXin Li
7*67e74705SXin Liint main ()
8*67e74705SXin Li{
9*67e74705SXin Li  __weak id  local;  // expected-warning {{Objective-C GC does not allow weak variables on the stack}}
10*67e74705SXin Li}
11*67e74705SXin Li
12