Fix PR48484
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20081109-2_0.C
blobdc43286bf3626a57287ff365521f270f1c24e085
1 /* { dg-lto-do assemble }  */
2 extern void func(int);
4 struct Foo
6  void bar() {
7    static int local;
8    func(local);
9  }
10  void baz();
13 void Foo::baz() {
14  bar();