[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / SymbolFile / PDB / Inputs / VariablesLocationsTest.cpp
blob7b7180a3ec43b08160821dec17f7fe53815b9a10
1 int g_var = 2222;
3 void __fastcall foo(short arg_0, float arg_1) {
4 char loc_0 = 'x';
5 double loc_1 = 0.5678;
8 __declspec(align(128)) struct S {
9 int a = 1234;
12 void bar(int arg_0) {
13 S loc_0;
14 int loc_1 = 5678;
18 int main(int argc, char *argv[]) {
19 bool loc_0 = true;
20 int loc_1 = 3333;
22 foo(1111, 0.1234);
23 bar(22);
25 return 0;