Home | History | Annotate | Download | only in Helpers
      1 // Linker initialized:
      2 int getAB();
      3 static int ab = getAB();
      4 // Function local statics:
      5 int countCalls();
      6 static int one = countCalls();
      7 // Constexpr:
      8 int getCoolestInteger();
      9 static int coolest_integer = getCoolestInteger();
     10