diff options
Diffstat (limited to 'test/SemaObjC/property-dot-receiver.m')
-rw-r--r-- | test/SemaObjC/property-dot-receiver.m | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/SemaObjC/property-dot-receiver.m b/test/SemaObjC/property-dot-receiver.m new file mode 100644 index 0000000..733ad42 --- /dev/null +++ b/test/SemaObjC/property-dot-receiver.m @@ -0,0 +1,22 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s +// RUN: %clang_cc1 -x objective-c++ -fsyntax-only -verify %s +// rdar://8962253 + +@interface Singleton { +} ++ (Singleton*) instance; +@end + +@implementation Singleton + +- (void) someSelector { } + ++ (Singleton*) instance { return 0; } + ++ (void) compileError +{ + [Singleton.instance someSelector]; // clang issues error here +} + +@end + |