1// Linker initialized:
2int getAB();
3static int ab = getAB();
4// Function local statics:
5int countCalls();
6static int one = countCalls();
7// Trivial constructor, non-trivial destructor:
8int getStructWithDtorValue();
9static int val = getStructWithDtorValue();
10