1 // { dg-do compile { target c++11 } }
2 template<typename T, T... Values>
3 struct vector_c { };
4 
5 vector_c<int, 1, 2, 3> v1;
6 vector_c<char, 'a', 'b', 'c'> v2;
7 vector_c<long, 1u, 2, 3l> v3;
8