summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/init1.C
blob: 7fc7db66a06a7551eccaaecd4aa8b678828416ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// { dg-do compile }

// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 13 Nov 2001 <nathan@codesourcery.com>

// Bug 3154

class A {};

struct B : A
{
  typedef A Parent;
  
  B () : Parent () {}
};

class T
{
  typedef int Foo;
  T () : Foo () {}	// { dg-error "T::Foo' is not" "" }
};

struct S : B
{
  int Parent;

  S () :Parent (1) {}
};