2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / init / ref2.C
blob231ea047fff0f84b3e5c002e70a75e6a368dd2bc
1 struct Base {
2         Base();
3   Base(const Base &);
4   Base & operator = (const Base &);
5 };
7 struct Derived : public Base {};
9 Derived derived();
10 const Base &b = derived();