URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [ambig3.C] - Rev 301
Compare with Previous | Blame | View Log
// PR c++/9452
// Origin: Wolfgang Bangerth <bangerth@ticam.utexas.edu>
// { dg-do compile }
template <int> struct A { static const int i = 1; };
template <int> struct B {};
template <typename> int foo(B<0>)
{
return 0;
}
template <typename, int j> B<A<j>::i-1> foo(B<j>)
{
return B<0>();
}
int main()
{
return foo<int>(B<0>());
}