summaryrefslogtreecommitdiffstats
path: root/test/Index/complete-macro-args.c
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-08-18 19:41:28 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2011-08-18 19:41:28 +0000
commit5c5f03e4020e90b9760ec547962ba02b029cc359 (patch)
tree0990f927f1d7421ccdc2c410b3e3e3bc26dc383b /test/Index/complete-macro-args.c
parent870d1fee3c5027efe7fd23d6935952bc1f419f99 (diff)
[libclang] Support code-completion inside macro arguments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/complete-macro-args.c')
-rw-r--r--test/Index/complete-macro-args.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/Index/complete-macro-args.c b/test/Index/complete-macro-args.c
new file mode 100644
index 0000000000..ca36af1f10
--- /dev/null
+++ b/test/Index/complete-macro-args.c
@@ -0,0 +1,22 @@
+struct Point {
+ float x;
+ float y;
+ float z;
+};
+
+#define MACRO2(x) x
+#define MACRO(x) MACRO2(x)
+
+void test(struct Point *p) {
+ p->x;
+ MACRO(p->x);
+}
+
+// RUN: c-index-test -code-completion-at=%s:11:12 %s | FileCheck %s
+// RUN: c-index-test -code-completion-at=%s:12:12 %s | FileCheck %s
+// CHECK: FieldDecl:{ResultType float}{TypedText x} (35)
+// CHECK-NEXT: FieldDecl:{ResultType float}{TypedText y} (35)
+// CHECK-NEXT: FieldDecl:{ResultType float}{TypedText z} (35)
+// CHECK-NEXT: Completion contexts:
+// CHECK-NEXT: Arrow member access
+// CHECK-NEXT: Container Kind: StructDecl