blob: dc43286bf3626a57287ff365521f270f1c24e085 [file] [log] [blame]
/* { dg-lto-do assemble } */
extern void func(int);
struct Foo
{
void bar() {
static int local;
func(local);
}
void baz();
};
void Foo::baz() {
bar();
}