llvm-project/compiler-rt/lib/asan/lit_tests/Helpers/initialization-nobug-extra.cc

10 lines
226 B
C++

// Linker initialized:
int getAB();
static int ab = getAB();
// Function local statics:
int countCalls();
static int one = countCalls();
// Constexpr:
int getCoolestInteger();
static int coolest_integer = getCoolestInteger();