xref: /aosp_15_r20/external/compiler-rt/test/asan/TestCases/Helpers/initialization-nobug-extra.cc (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
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