URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [tc1/] [dr164.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do link }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR164: Overlap between Koenig and normal lookup
void f(int);
template <class T> void g(T t) {
f(t);
}
enum E { e };
void f(E) {}
int main() {
g(e);
}
Go to most recent revision | Compare with Previous | Blame | View Log