2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1z / nontype-auto9.C
blobbe4ee9f31a4eeacc56ccec3e4d5f60142e89a098
1 // PR c++/79556
2 // { dg-do compile { target c++17 } }
4 template <auto> struct A;
5 template <auto...> struct B;
6 template <int N, auto Dim, auto... Dims> struct B<N, Dim, Dims...> {
7   static auto a = A<B<Dims...>::value>::value;
8 };