aboutsummaryrefslogtreecommitdiff
path: root/lit/SymbolFile/PDB/Inputs/VariablesLocationsTest.cpp
blob: 54d54c0d56a6377caaf3583330df0cac2d76c224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int g_var = 2222;

void __fastcall foo(short arg_0, float arg_1) {
  char loc_0 = 'x';
  double loc_1 = 0.5678;
}

int main(int argc, char *argv[]) {
  bool loc_0 = true;
  int loc_1 = 3333;

  foo(1111, 0.1234);

  return 0;
}