[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / Index / get-cursor-macro-args.h
blob70d0dc7bf83293417f79aca0a6998bcbf36bf410
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);