2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / pr61324.C
blob610257436b3bd1b012fc1f11c4a6867c6fdbd858
1 // { dg-do compile }
2 // { dg-options "-O -fkeep-inline-functions -fno-use-cxa-atexit" }
3 void foo ();
5 struct S
7   ~S ()
8   {
9     foo ();
10   }
13 S s;