8b_nested_if.c (81B)
1 #define X 1 2 #if X 3 #if defined Y 4 inner_yes 5 #else 6 inner_no 7 #endif 8 outer_yes 9 #endif