URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [unify3.C] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// Test unifying SCOPE_REF.
// Origin: Marc Duflot <m.duflot@ulg.ac.be>
// { dg-do compile }
template <int n> class A {};
template <int m> class R {};
template <int n> struct Trait { enum {m = n}; };
template <int n> R<Trait<n>::m> f(A<n>);
template <> R<1> f(A<1>) {return R<1>();}
Go to most recent revision | Compare with Previous | Blame | View Log