1 2 3 4 5 6 7 8 9 10 11 12 13
// { dg-do link } struct foo { foo() {} ~foo() {} void func() { static foo x; } }; int main() { foo f; return 0; }