URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [variadic102.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x" }
struct nAny {
template<class... T>
nAny(T&&...);
};
template<class T>
T&& create();
template<class T, class... Args>
void test() {
T t(create<Args>()...);
(void) t;
}
int main() {
test<nAny>();
}
Go to most recent revision | Compare with Previous | Blame | View Log