diff options
| author | Fariborz Jahanian <fjahanian@apple.com> | 2010-10-08 23:17:27 +0000 |
|---|---|---|
| committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-10-08 23:17:27 +0000 |
| commit | 5eee9f7d300312369d0e7f862eae49a7bb1d2c11 (patch) | |
| tree | 0d552fa5f3f5a30b3224cd3ba317df3ac71fac1f /clang/test/SemaObjC/method-in-class-extension-impl.m | |
| parent | df2aae0c5ae27322c1f1ce82e6a60da99912f636 (diff) | |
| download | bcm5719-llvm-5eee9f7d300312369d0e7f862eae49a7bb1d2c11.tar.gz bcm5719-llvm-5eee9f7d300312369d0e7f862eae49a7bb1d2c11.zip | |
Rename test name.
llvm-svn: 116120
Diffstat (limited to 'clang/test/SemaObjC/method-in-class-extension-impl.m')
| -rw-r--r-- | clang/test/SemaObjC/method-in-class-extension-impl.m | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/method-in-class-extension-impl.m b/clang/test/SemaObjC/method-in-class-extension-impl.m new file mode 100644 index 00000000000..c205322dec9 --- /dev/null +++ b/clang/test/SemaObjC/method-in-class-extension-impl.m @@ -0,0 +1,20 @@ +// RUN: %clang_cc1 -fsyntax-only -verify %s +// rdar://8530080 + +@protocol ViewDelegate @end + +@interface NSTextView +- (id <ViewDelegate>)delegate; +@end + +@interface FooTextView : NSTextView +@end + +@interface FooTextView() +- (id)delegate; +@end + +@implementation FooTextView +- (id)delegate {return 0; } +@end + |

