xref: /minix3/external/bsd/llvm/dist/clang/test/Index/complete-in-stringify.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc const char *func(const char *);
2*f4a2713aSLionel Sambuc 
3*f4a2713aSLionel Sambuc #define MORE __FILE__
4*f4a2713aSLionel Sambuc 
5*f4a2713aSLionel Sambuc #define M(x) "1"#x
6*f4a2713aSLionel Sambuc #define N(x) func("2"#x MORE)
7*f4a2713aSLionel Sambuc 
8*f4a2713aSLionel Sambuc void foo(const char *);
9*f4a2713aSLionel Sambuc 
test()10*f4a2713aSLionel Sambuc int test() {
11*f4a2713aSLionel Sambuc     foo(M(x()));
12*f4a2713aSLionel Sambuc     foo(N(x()));
13*f4a2713aSLionel Sambuc }
14*f4a2713aSLionel Sambuc 
15*f4a2713aSLionel Sambuc // RUN: c-index-test -code-completion-at=%s:11:11 %s | FileCheck %s
16*f4a2713aSLionel Sambuc // RUN: c-index-test -code-completion-at=%s:12:11 %s | FileCheck %s
17*f4a2713aSLionel Sambuc // CHECK: Natural language
18