aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/init-statement3.C
blob: 5b067a98574124a320de4580f79c5ee27233940a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do run { target c++17 } }
// Test C++17 selection statements with initializer, side-effects.

int
main ()
{
  int g = 0;

  if (g++; g > 1)
    __builtin_abort ();
  if (++g; g > 2)
    __builtin_abort ();
  if (g != 2)
    __builtin_abort ();
}