1 2 3 4 5 6 7 8 9 10 11
int main () { int v = 42; inline int fff (int x) { return x*10; } return (fff (v) != 420); }