(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
expr1.C
struct A {
  A (int, int);
  void f ();
};

void f (int a) {
  A (a, a).f ();
}