URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [variadic70.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-std=gnu++0x" }
template <typename T, T... Args> struct bomb;
template <typename T>
struct bomb<T> {
static const T value = 0;
};
template <typename T, T v, T... Args>
struct bomb<T, v, Args...> {
static const T value = v + bomb<T, Args...>::value;
};
extern "C" void abort();
int main() {
bomb<int, 1, 2, 3, 4> b;
if (b.value != 10)
abort();
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log