1 // { dg-do compile { target c++11 } }
2 template<typename T, int... Dims>
3 struct array { };
4 
5 array<int> a0;
6 array<int, 1> a1;
7 array<int, 1, 2, 3, 4> a1234;
8