aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lto/20081118_1.C
blob: a1bf08186df33d4dd53195d48de2c3fcf2411ca0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class object {
public:
  virtual ~object() {}
};

class bar : public object
{
  static bar *method(void);
};

class quxx : public bar
{
 public:
  static void method();
};

bar*
bar::method (void)
{
 quxx::method();
}