Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -fobjc-gc -verify %s |
Fariborz Jahanian | 7b5b317 | 2009-02-21 19:44:02 +0000 | [diff] [blame] | 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 |