diff options
Diffstat (limited to 'clang/test/SemaObjC/protocol-id-test-1.m')
-rw-r--r-- | clang/test/SemaObjC/protocol-id-test-1.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/protocol-id-test-1.m b/clang/test/SemaObjC/protocol-id-test-1.m new file mode 100644 index 0000000..19a4432 --- /dev/null +++ b/clang/test/SemaObjC/protocol-id-test-1.m @@ -0,0 +1,16 @@ +// RUN: %clang_cc1 -verify -Wno-objc-root-class %s + +@interface FF +- (void) Meth; +@end + +@protocol P +@end + +@interface INTF<P> +- (void)IMeth; +@end + +@implementation INTF +- (void)IMeth {INTF<P> *pi; [pi Meth]; } // expected-warning {{method '-Meth' not found (return type defaults to 'id')}} +@end |