// Compile with "cl /c /Zi /GR- symbolformat.cpp"
// Compile symbolformat-fpo.cpp (see file for instructions)
// Link with "link symbolformat.obj symbolformat-fpo.obj /debug /nodefaultlib
// /entry:main /out:symbolformat.exe"
int __cdecl
;
;
;
;
;
;
typedef int IntType;
typedef A ClassAType;
int g_global_int;
void *g_global_pointer = nullptr;
typedef int int_array;
int_array g_array = ;
int_array *g_pointer_to_array = &g_array;
const int *g_pointer_to_const_int = nullptr;
int * const g_const_pointer_to_int = nullptr;
const int * const g_const_pointer_to_const_int = nullptr;
int