aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/lto/20081209_0.C
blob: 3744a9ac42a1ddf78d033a350ce002d0a537b04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-lto-do link } */

class foo {
 public:
 foo ();
 virtual ~foo ();
};

foo::foo ()
{
}

int
main ()
{
 foo dummy;
 return 0;
}