xref: /minix3/external/bsd/llvm/dist/clang/test/Index/annotate-macro-args.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc @interface MyClass
2*f4a2713aSLionel Sambuc +(void)meth;
3*f4a2713aSLionel Sambuc @end
4*f4a2713aSLionel Sambuc 
5*f4a2713aSLionel Sambuc #define MACRO2(x) x
6*f4a2713aSLionel Sambuc #define MACRO(x) MACRO2(x)
7*f4a2713aSLionel Sambuc 
test()8*f4a2713aSLionel Sambuc void test() {
9*f4a2713aSLionel Sambuc   MACRO([MyClass meth]);
10*f4a2713aSLionel Sambuc }
11*f4a2713aSLionel Sambuc 
12*f4a2713aSLionel Sambuc #define INVOKE(METHOD, CLASS) [CLASS METHOD]
13*f4a2713aSLionel Sambuc 
test2()14*f4a2713aSLionel Sambuc void test2() {
15*f4a2713aSLionel Sambuc   INVOKE(meth, MyClass);
16*f4a2713aSLionel Sambuc }
17