initialization-nobug-extra.cc revision 5f799c78e5b1bd8105bab77a0935f27ee808dc97
1// Linker initialized:
2int getAB();
3static int ab = getAB();
4// Function local statics:
5int countCalls();
6static int one = countCalls();
7// Constexpr:
8int getCoolestInteger();
9static int coolest_integer = getCoolestInteger();
10