summaryrefslogtreecommitdiff
path: root/test/Index/Inputs/t1.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/Index/Inputs/t1.m')
-rw-r--r--test/Index/Inputs/t1.m20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/Index/Inputs/t1.m b/test/Index/Inputs/t1.m
new file mode 100644
index 0000000000000..b7c86cd6aac78
--- /dev/null
+++ b/test/Index/Inputs/t1.m
@@ -0,0 +1,20 @@
+#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