URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [template/] [koenig5.C] - Rev 695
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }// Contributed by David Abrahams <dave at boost-consulting dot com>// PR c++/14143: Koenig lookup should only look into template arguments only// if the argument is a template-id.namespace fu{template <class T>struct bar{struct baz {};};}namespace axe{struct handle {};template <class T>char* f(T&);}namespace test{template <class T>int f(T const&);template <class T>int g(T x) { return f(x); }int x = g(fu::bar<axe::handle>::baz());}
Go to most recent revision | Compare with Previous | Blame | View Log
