FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.bugs / 900205_04.C
blob976951815cf6a7355b910fae48523dc054da9288
1 // g++ 1.36.1 bug 900205_04
3 // g++ allows a class for which an implicit default X::X() constructor must
4 // be created (implicitly by the compiler) to be derived from another class
5 // which does not have its own default X::X() constructor.  This is illegal.
7 // Cfront 2.0 passes this test.
9 // keywords: default constructor, inheritance
11 struct struct0 {
12   int data_member;
14   struct0 (int, void *);        // suppresses implicit default constructor
17 struct0::struct0 (int, void *)
21 struct struct0_derived_struct_0 : public struct0 { // ERROR - 
24 // struct0_derived_struct_0 object;     // would give g++ error if compiled
26 int main () { return 0; }