comparison gcc/testsuite/g++.dg/cpp0x/variadic25.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<int... Values>
3 struct sum;
4
5 template<>
6 struct sum<> {
7 static const int value = 0;
8 };
9
10 template<int Value, int... Values>
11 struct sum<Value, Values...> {
12 static const int value = Value + sum<Values...>::value;
13 };
14
15 int a0[sum<>::value == 0? 1 : -1];
16 int a1[sum<1, 2, 3, 4, 5>::value == 15? 1 : -1];