bolt/deps/llvm-18.1.8/compiler-rt/test/asan/TestCases/Helpers/initialization-nobug-extra.cpp

10 lines
258 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// Linker initialized:
int getAB();
static int ab = getAB();
// Function local statics:
int countCalls();
static int one = countCalls();
// Trivial constructor, non-trivial destructor:
int getStructWithDtorValue();
static int val = getStructWithDtorValue();