[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / setter-dotsyntax.m
blob7e205ca756182c908d8d6cbe2e7adca6b71da049
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 // rdar://8528170
5 @interface NSObject @end
7 @protocol MyProtocol
8 - (int) level;
9 - (void) setLevel:(int)inLevel;
10 @end
12 @interface MyClass : NSObject <MyProtocol>
13 @end
15 int main (void)
17     id<MyProtocol> c;
18     c.level = 10;
19     return 0;