blob: 9ef095e2af0f34830c98f4812ff1021a1bc24f53 [file] [log] [blame]
// PR c++/81486
// { dg-do compile { target c++17 } }
template <typename... Ts>
struct foo
{
template <typename... Us>
foo(Us...) { }
};
int
main ()
{
auto f = foo();
}