sccache/tests/test_macro_expansion.c

11 строки
454 B
C

#include <stdlib.h>
#define foo(x) \
{ \
if (x) { \
abort(); \
} \
}
void bar() { foo(0); }