URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [pr38646.C] - Rev 693
Compare with Previous | Blame | View Log
/* PR c++/38646 */
/* { dg-do compile } */
/* { dg-options "-std=c++0x" } */
template<int...> struct A;
template<int... N> struct A<N..., N...> /* { dg-error "must be at the end" } */
{
template<typename> struct B;
template<typename T> struct B<T*> {};
};