| // Check that structs get placed in the correct namespace |
| // lldb-command:v struct1 |
| // lldb-check:(struct_namespace::Struct1)[...] |
| // lldb-command:v struct2 |
| // lldb-check:(struct_namespace::Struct2)[...] |
| // lldb-command:v mod1_struct1 |
| // lldb-check:(struct_namespace::mod1::Struct1)[...] |
| // lldb-command:v mod1_struct2 |
| // lldb-check:(struct_namespace::mod1::Struct2)[...] |
| #![allow(unused_variables)] |
| #![feature(omit_gdb_pretty_printer_section)] |
| #![omit_gdb_pretty_printer_section] |
| pub struct Struct2(pub u32); |
| let struct2 = Struct2(2); |
| let mod1_struct1 = mod1::Struct1 { |
| let mod1_struct2 = mod1::Struct2(5); |