URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [template/] [void10.C] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
//PR c++/28736
template<void> struct A // { dg-error "not a valid type" }
{
template<typename> friend struct B;
};
template<typename> struct B {};
B<int> b; // { dg-error "template argument|invalid type" }
Go to most recent revision | Compare with Previous | Blame | View Log