2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / init / ref3.C
blob776f2d0c5d225478d6fd36e4111a29b2f4cdaeb2
1 struct Base { };
2 struct Derived : public Base { };
3 struct Choose {
4   operator Base&();
5   operator Derived&();
6 };
8 void f()
10   Choose c;
11   Base& ref = c;