1int g_var = 2222;
2
3void __fastcall foo(short arg_0, float arg_1) {
4 char loc_0 = 'x';
5 double loc_1 = 0.5678;
6}
7
8__declspec(align(128)) struct S {
9 int a = 1234;
10};
11
12void bar(int arg_0) {
13 S loc_0;
14 int loc_1 = 5678;
15}
16
17
18int main(int argc, char *argv[]) {
19 bool loc_0 = true;
20 int loc_1 = 3333;
21
22 foo(arg_0: 1111, arg_1: 0.1234);
23 bar(arg_0: 22);
24
25 return 0;
26}
27

source code of lldb/test/Shell/SymbolFile/PDB/Inputs/VariablesLocationsTest.cpp