(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.other/
stmtexpr2.C
// { dg-do assemble  }
// { dg-options "-O2" }
// Origin: Jakub Jelinek <jakub@redhat.com>

void bar(int);
void foo(int x)
{
  bar(({ int y; y = x; }));
}