summaryrefslogtreecommitdiff
path: root/test/Index/t1.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Index/t1.m')
-rw-r--r--test/Index/t1.m23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/Index/t1.m b/test/Index/t1.m
new file mode 100644
index 000000000000..b2a7a3726d20
--- /dev/null
+++ b/test/Index/t1.m
@@ -0,0 +1,23 @@
+#include "objc.h"
+
+static void foo() {
+ Base *base;
+ int x = [base my_var];
+ [base my_method:x];
+ [Base my_method:x];
+}
+
+@implementation Base
+-(int) my_var {
+ return my_var;
+}
+
+-(void) my_method: (int)param {
+}
+
++(void) my_method: (int)param {
+}
+@end
+
+// Suppress 'no run line' failure.
+// RUN: true