xref: /llvm-project/clang/test/Interpreter/global-dtor.cpp (revision a8f2e24e48fddb3707301c9d24cc50ab778d4fda)
1 // clang-format off
2 // UNSUPPORTED: system-aix
3 //
4 // Tests that a global destructor is ran on platforms with gnu exception support.
5 //
6 // RUN: cat %s | clang-repl | FileCheck %s
7 
8 extern "C" int printf(const char *, ...);
9 
DD10 struct D { float f = 1.0; D *m = nullptr; D(){} ~D() { printf("D[f=%f, m=0x%llx]\n", f, reinterpret_cast<unsigned long long>(m)); }} d;
11 // CHECK: D[f=1.000000, m=0x0]
12 
13 %quit