android13/external/compiler-rt/test/asan/TestCases/Helpers/initialization-nobug-extra.cc

10 lines
258 B
C++
Raw Normal View History

2024-06-22 08:45:49 -04: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();