PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / array22.C
blobe101587738b3fe32d938687c93cf109b148793a1
1 // PR c++/48029
3 template <class T> struct A { };
4 template <class T, class U> struct B
6   struct N { };
7   typedef U u;
8 };
10 typedef B<int, A<int>(*)[2]> btype;
11 A<int> v1[2];
12 btype v2;