1 // { dg-do compile { target c++11 } }
2 template<typename T, T... Values>
3 struct vector_c { };
4 
5 vector_c<int, 17, 42> intvec;
6 vector_c<char, 'a', 'b', 'c'> charvec;
7