URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [init/] [new9.C] - Rev 816
Compare with Previous | Blame | View Log
// PR 12337class A {};template <typename T>class X : public A {public:X(T&);};class B {public:bool foo(A*);template <typename T>bool foo(T& t) { return foo(new X<T>(t)); }};int main(){B x, y;x.foo(y);}
