1 2 3 4 5 6 7 8 9 10 11 12 13
// PR c++/30924 template<typename T> struct x {}; template<typename T, unsigned N> struct x<T*[N]> {}; int main() { x<int> a; x<int*[10]> b; return 0; }