URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [pr38646.C] - Rev 307
Go to most recent revision | 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*> {};
};
Go to most recent revision | Compare with Previous | Blame | View Log