1 /* Test two failing cases for libcpp parser.  From PRs 35313, 36088*/
2 /* { dg-do preprocess } */
3 /* { dg-options "-std=c99 -pedantic-errors" } */
4 
5 extern int x;
6 
7 #if 0 ? 3,4 : 2
8 #endif
9 
10 #if 1 ? 0 : 1 ? 1/0 : 1/0
11 #endif
12