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 Sambucvoid 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 Sambucvoid test2() { 15*f4a2713aSLionel Sambuc INVOKE(meth, MyClass); 16*f4a2713aSLionel Sambuc } 17