aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/lit_tests/Helpers/initialization-nobug-extra.cc
blob: 490b3339054a5ffb34353a32c7f8232a9a563afc (plain) (blame)
1
2
3
4
5
6
7
8
9
// 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();