pr77285-2.C: Require tls_native support.
[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;