blob: b2b1e3502e1872a8d579ccd780d6c9c819893847 [file] [log] [blame]
// 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;
}