aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p8825.C
blob: 11de74e78d28b821225b669bca865bb32ec405b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Build don't link:
// prms-id: 8825

class A {
  typedef A x;
};

class B {
  typedef B x;
};

class C : public A, public B {
  typedef C x;
};