Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 195 Bytes

if-with-embedded-parens

File metadata and controls

7 lines (7 loc) · 195 Bytes
 
1
2
3
4
5
6
7
// Before hg changeset 91c22d2de774, the preprocessor incorrect thought
// that the '+' is a unary operator and would fail to parse the expression.
#if ((1) + (0) < 12)
RIGHT
#else
WRONG
#endif