OSDN Git Service

gcc/testsuite/
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / lto / 20081118_0.C
1 /* { dg-lto-do link } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-lto-options {{-fPIC -flto -flto-partition=1to1 -r -nostdlib}} } */
4
5 /* We used to ICE because of dangling pointers.  */
6
7 class object
8 {
9 public:
10   virtual ~object() {}
11 };
12
13 class foo : public object
14 {
15   virtual int method(void);
16 };
17
18 int
19 foo::method(void)
20 {
21 }