]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/SemaObjC/objc2-warn-weak-decl.m
Update clang to r89205.
[FreeBSD/FreeBSD.git] / test / SemaObjC / objc2-warn-weak-decl.m
1 // RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
2 struct S {
3         __weak id  p;  // expected-warning {{__weak attribute cannot be specified on a field declaration}}
4 };
5
6 int main ()
7 {
8   __weak id  local;  // expected-warning {{__weak attribute cannot be specified on an automatic variable}}
9 }
10