blob: 3f252d0a29ed309ef7f40e5cb1c8a32bef136393 [file] [log] [blame]
Fariborz Jahanian22f757b2010-03-22 23:25:52 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2// rdar: // 7766184
3
4@interface Foo @end
5
6@interface Foo ()
7 @property (readonly) int bar;
8@end
9
10void FUNC () {
11 Foo *foo;
12 foo.bar = 0; // expected-error {{assigning to property with 'readonly' attribute not allowed}}
13}
14
15