URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [pr34060.C] - Rev 709
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/34060
// { dg-do compile }
// { dg-options "-std=c++0x" }
template <int> struct A
{
template <typename... > struct B {};
template <typename... T> struct B <int, T *> {}; // { dg-error "not expanded|T" }
};
A<0>::B<int>b;
Go to most recent revision | Compare with Previous | Blame | View Log