OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / operator2.C
1 template <typename T> struct A {};
2
3 struct B {
4   operator A<B>();
5 };
6
7 template <typename T>
8 void f() { B::operator A<T>; }