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