comparison gcc/testsuite/g++.dg/cpp0x/variadic21.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
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;