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