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 // Trivial constructor, non-trivial destructor:
      8 int getStructWithDtorValue();
      9 static int val = getStructWithDtorValue();
     10