Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
a4d4621b206f941cc58d9d0bc7c67a8e705c9d49
/
.
/
test
/
Index
/
annotate-macro-args.h
blob: 40ec8dc0b81fb706fc0dc935901fa3bcfad5938b [
file
] [
log
] [
blame
]
@interface
MyClass
+(
void
)
meth
;
@end
#define
MACRO2
(
x
)
x
#define
MACRO
(
x
)
MACRO2
(
x
)
void
test
()
{
MACRO
([
MyClass
meth
]);
}
#define
INVOKE
(
METHOD
,
CLASS
)
[
CLASS METHOD
]
void
test2
()
{
INVOKE
(
meth
,
MyClass
);
}