diff options
Diffstat (limited to 'clang/test/SemaObjC/self-in-function.m')
-rw-r--r-- | clang/test/SemaObjC/self-in-function.m | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/self-in-function.m b/clang/test/SemaObjC/self-in-function.m new file mode 100644 index 0000000..9027a94 --- /dev/null +++ b/clang/test/SemaObjC/self-in-function.m @@ -0,0 +1,26 @@ +// RUN: %clang_cc1 -fsyntax-only -fblocks -verify %s +// rdar://9181463 + +typedef struct objc_class *Class; + +typedef struct objc_object { + Class isa; +} *id; + +@interface NSObject ++ (id) alloc; +@end + + +void foo(Class self) { + [self alloc]; + (^() { + [self alloc]; + })(); +} + +void bar(Class self) { + Class y = self; + [y alloc]; +} + |