blob: 490b3339054a5ffb34353a32c7f8232a9a563afc [file] [log] [blame]
// 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();