2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / other / init1.C
blobec1986e9b7ac9195da125aa86242f008cbb480a7
1 // { dg-do compile }
3 // Copyright (C) 2001, 2002 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 13 Nov 2001 <nathan@codesourcery.com>
6 // Bug 3154
8 class A {};
10 struct B : A
12   typedef A Parent;
13   
14   B () : Parent () {};
17 class T
19   typedef int Foo;
20   T () : Foo () {}      // { dg-error "T::Foo' is not" "" }
23 struct S : B
25   int Parent;
27   S () :Parent (1) {}