Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / property-dot-receiver.m
blob642b651be2209035b69f26a2fd4c30c5b9d0bdd0
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s 
2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify -Wno-objc-root-class %s 
3 // expected-no-diagnostics
5 @interface Singleton {
7 + (Singleton*) instance;
8 @end
10 @implementation Singleton
12 - (void) someSelector { }
14 + (Singleton*) instance { return 0; }
16 + (void) compileError
18      [Singleton.instance  someSelector]; // clang issues error here
21 @end