view gcc/testsuite/g++.dg/cpp1z/init-statement3.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// { 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 ();
}