blob: 63eab6a84429171517aec2e2a3be4a832446e527 [file] [log] [blame]
// PR c++/96474
// { dg-do compile { target c++17 } }
template <typename = void>
struct A
{
template <typename = void>
struct B
{
};
};
A<>::B b;