summaryrefslogtreecommitdiffstats
path: root/test/SemaObjC/objc2-warn-weak-decl.m
blob: bd59c6613304a47ea873f382a8b472b780ae3979 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang -cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s
struct S {
	__weak id  p;  // expected-warning {{__weak attribute cannot be specified on a field declaration}}
};

int main ()
{
  __weak id  local;  // expected-warning {{__weak attribute cannot be specified on an automatic variable}}
}