Add test for '/', '<<', and '>>' in #if expressions.

These operators have been supported already, but were not covered in
existing tests yet. So this test passes already.
This commit is contained in:
Carl Worth 2010-05-24 11:33:28 -07:00
parent bb9315f804
commit 00f1ec421e

View file

@ -0,0 +1,16 @@
#if (15 / 2) != 7
failure_1
#else
success_1
#endif
#if (1 << 12) == 4096
success_2
#else
failure_2
#endif
#if (31762 >> 8) != 124
failure_3
#else
success_3
#endif