summaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/method-not-defined.m
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaObjC/method-not-defined.m')
-rw-r--r--clang/test/SemaObjC/method-not-defined.m13
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/method-not-defined.m b/clang/test/SemaObjC/method-not-defined.m
new file mode 100644
index 0000000..22466f7
--- /dev/null
+++ b/clang/test/SemaObjC/method-not-defined.m
@@ -0,0 +1,13 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+
+@interface Foo
+@end
+
+void test() {
+ Foo *fooObj;
+ id obj;
+
+ [[Foo alloc] init]; // expected-warning {{class method '+alloc' not found (return type defaults to 'id')}} expected-warning {{instance method '-init' not found (return type defaults to 'id')}}
+ [fooObj notdefined]; // expected-warning {{instance method '-notdefined' not found (return type defaults to 'id')}}
+ [obj whatever:1 :2 :3]; // expected-warning {{instance method '-whatever:::' not found (return type defaults to 'id')}}
+}