(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
temp-constructor-bug.C
// { dg-do compile { target c++11 } }
// { dg-options "" }

struct S { };

struct T
{
  S s;
};

void f(T const &);

void g()
{
  f((T){S()});
}