Fariborz Jahanian | 69d5624 | 2010-07-22 23:33:21 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fobjc-nonfragile-abi -verify -fsyntax-only %s |
2 | // rdar : // 8225011 | ||||
3 | |||||
4 | int glob; | ||||
5 | |||||
6 | @interface I | ||||
7 | @property int glob; // expected-note {{property declared here}} | ||||
8 | @end | ||||
9 | |||||
10 | @implementation I | ||||
11 | - (int) Meth { return glob; } // expected-warning {{'glob' lookup will access the property ivar in nonfragile-abi2 mode}} | ||||
12 | @synthesize glob; | ||||
13 | @end |