PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic52.C
blob28ef857120398484c59443789aa6dbdd20c6cda0
1 // { dg-do compile { target c++11 } }
2 template<typename T, T... Values>
3 struct vector_c { };
5 vector_c<int, 1, 2, 3> v1;
6 vector_c<char, 'a', 'b', 'c'> v2;
7 vector_c<long, 1u, 2, 3l> v3;