aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/typedef6.C
blob: 29e9f92f9f63e8e70d8a6844fe3b93b426a16a60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do assemble  }
// Submitted by Jason Merrill <jason@cygnus.com>.
// Bug: g++ fails to see through the T typedef in the C ctor.

struct A {
  A (int) { }
};

typedef A T;

struct B: public virtual T {
  B (): T(1) { }
};

struct C: public B {
  C (): T(1) { }
};