blob: a06720702050790ffb4af3ac0f15e28b166a0d95 [file] [log] [blame]
// { dg-options "--std=c++0x" }
struct S { };
struct T
{
S s;
};
void f(T const &);
void g()
{
f((T){S()});
}