Sign in
qemu
/
meson
/
274445d247afd44afc408af5a8d130ae9a7c270c
/
.
/
test cases
/
objcpp
/
2 objc++ args
/
prog.mm
blob: 2b437ce0409ffe35b7436e1fa604eadf43b1736d [
file
] [
log
] [
blame
]
#import<stdio.h>
class
TestClass
{
};
int
main
(
void
)
{
#ifdef
MESON_OBJCPP_TEST
int
x
=
1
;
#endif
printf
(
"x = %x\n"
,
x
);
return
0
;
}