OSDN Git Service

Revert XFAIL removal.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / crash33.C
1 // Build don't link:
2 // Origin: Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
3
4 class A {
5 public:
6         template <class T> T& f(T& t) const;
7 };
8
9 class B {
10 public:
11         template <class T> T& f(T& t) const;
12 };
13
14 class C: public A,B {
15 public:
16         template <class T> T& f(T& t) const;
17 };