[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / annotate-macro-args.h
blob40ec8dc0b81fb706fc0dc935901fa3bcfad5938b
1 @interface MyClass
2 +(void)meth;
3 @end
5 #define MACRO2(x) x
6 #define MACRO(x) MACRO2(x)
8 void test() {
9 MACRO([MyClass meth]);
12 #define INVOKE(METHOD, CLASS) [CLASS METHOD]
14 void test2() {
15 INVOKE(meth, MyClass);