2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / cast1.C
blob989667a378d0684c7069cce0a0be35a8c65a3417
1 // { dg-do assemble  }
3 struct S0 { };
4 struct S1 : virtual public S0 { };
5 struct S2 : virtual public S0 { };
7 struct S3 : public S1, public S2, virtual public S0
9 };
11 void f(const S0*) {}
13 void g()
15   f(static_cast<S3*>(0));