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