aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/debug/crash1.C
blob: 4fba256b7cce9678e288d206f5987a84ceef3b1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
template <typename T>
class foo
{
  T t;
};

class bar;
typedef foo<bar> foobar;

class obj
{
  virtual foobar* yeah() = 0;
};

class bar : virtual public obj
{
};