aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/cpp/pr61854-6.c
blob: 1b60cc37fb1d1bd7093a2c83db51e5f76dcb4671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* PR c/61854 */
/* { dg-do run } */
/* { dg-options "-std=gnu89" } */

int
main (void)
{
  int i = 0
#if 0
// /*
#else
// */
+1
#endif
;
  if (i != 1)
    __builtin_abort ();
  return 0;
}