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

int
main (void)
{
  int i = 1 //**/ 2
  ;
  int j = 1 //**/ 2
  ;
  if (i != 0 || j != 0)
    __builtin_abort ();  
  return 0;
}