[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / property-dot-receiver.m
blob733ad4288a83b08cfd605b2a79fff134f66e0107
1 // RUN: %clang_cc1 -fsyntax-only -verify %s 
2 // RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s 
3 // rdar://8962253
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