]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/pr61324.C
PR ipa/61324
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / pr61324.C
1 // { dg-do compile }
2 // { dg-options "-O -fkeep-inline-functions -fno-use-cxa-atexit" }
3 void foo ();
4
5 struct S
6 {
7 ~S ()
8 {
9 foo ();
10 }
11 };
12
13 S s;