1 2 3 4 5 6 7 8 9 10 11
#import<stdio.h> int main(void) { #ifdef MESON_TEST int x = 3; #endif printf("x = %d\n", x); return 0; }