blob: 93c23be2280a4ef67bd46f3267632fbba2a1ef64 [file] [log] [blame]
Fariborz Jahanian80b0b422008-11-20 18:10:58 +00001// RUN: clang -fsyntax-only -fobjc-gc -verify %s
2
3struct S {
4 __weak id w; // expected-warning {{__weak attribute cannot be specified on a field declaration}}
5 __strong id p1;
6};
7
8int main ()
9{
10 struct I {
11 __weak id w1; // expected-warning {{__weak attribute cannot be specified on a field declaration}}
12 };
13}