Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20081118_0.C
blob7be32b6e2a7f5336131c62f5cc78bbf48fda23ae
1 /* { dg-lto-do link } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-lto-options {{-fPIC -flto -flto-partition=1to1 -r -nostdlib}} } */
5 /* We used to ICE because of dangling pointers.  */
7 class object
9 public:
10   virtual ~object() {}
13 class foo : public object
15   virtual int method(void);
18 int
19 foo::method(void)