URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [too-many-tmpl-args1.C] - Rev 12
Compare with Previous | Blame | View Log
// PR c++/9229
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
// { dg-do compile }
template <typename T> class A // { dg-error "" }
{
struct B;
template <typename U> friend typename A<U,void>::B foo(); // { dg-error "" }
};
template class A<int>;