Sign in
cobalt
/
cobalt
/
11295760be490ee3fe93b612c49343055ab2c485
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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
);
}