blob: be4ee9f31a4eeacc56ccec3e4d5f60142e89a098 [file] [log] [blame]
// PR c++/79556
// { dg-do compile { target c++17 } }
template <auto> struct A;
template <auto...> struct B;
template <int N, auto Dim, auto... Dims> struct B<N, Dim, Dims...> {
static auto a = A<B<Dims...>::value>::value;
};