Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / setter-dotsyntax.m
blob32f51f965cbf5cae2a4eae873398e6a4c9fd0345
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 @interface NSObject @end
6 @protocol MyProtocol
7 - (int) level;
8 - (void) setLevel:(int)inLevel;
9 @end
11 @interface MyClass : NSObject <MyProtocol>
12 @end
14 int main (void)
16     id<MyProtocol> c;
17     c.level = 10;
18     return 0;