blob: 32818681d8f20daa06e03612881e2fd52158b228 [file] [log] [blame]
// PR c++/89062
// { dg-do compile { target c++17 } }
template<class T> struct Foo { Foo(T); };
Foo<int> x(Foo{1});