xref: /aosp_15_r20/external/mesa3d/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1 /* The body can include C expressions with ++ and -- */
2 a = x++;
3 b = ++x;
4 c = x--;
5 d = --x;
6 /* But these are not legal in preprocessor expressions. */
7 #if x++ > 4
8 #endif
9