diff options
Diffstat (limited to 'tests/debuginfo/borrowed-tuple.rs')
-rw-r--r-- | tests/debuginfo/borrowed-tuple.rs | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/debuginfo/borrowed-tuple.rs b/tests/debuginfo/borrowed-tuple.rs new file mode 100644 index 000000000..cc28e49c4 --- /dev/null +++ b/tests/debuginfo/borrowed-tuple.rs @@ -0,0 +1,54 @@ +// min-lldb-version: 310 + +// compile-flags:-g + +// === GDB TESTS =================================================================================== + +// gdb-command:run + +// gdb-command:print *stack_val_ref +// gdbg-check:$1 = {__0 = -14, __1 = -19} +// gdbr-check:$1 = (-14, -19) + +// gdb-command:print *ref_to_unnamed +// gdbg-check:$2 = {__0 = -15, __1 = -20} +// gdbr-check:$2 = (-15, -20) + +// gdb-command:print *unique_val_ref +// gdbg-check:$3 = {__0 = -17, __1 = -22} +// gdbr-check:$3 = (-17, -22) + + +// === LLDB TESTS ================================================================================== + +// lldb-command:run + +// lldb-command:print *stack_val_ref +// lldbg-check:[...]$0 = { 0 = -14 1 = -19 } +// lldbr-check:((i16, f32)) *stack_val_ref = { 0 = -14 1 = -19 } + +// lldb-command:print *ref_to_unnamed +// lldbg-check:[...]$1 = { 0 = -15 1 = -20 } +// lldbr-check:((i16, f32)) *ref_to_unnamed = { 0 = -15 1 = -20 } + +// lldb-command:print *unique_val_ref +// lldbg-check:[...]$2 = { 0 = -17 1 = -22 } +// lldbr-check:((i16, f32)) *unique_val_ref = { 0 = -17 1 = -22 } + + +#![allow(unused_variables)] +#![feature(omit_gdb_pretty_printer_section)] +#![omit_gdb_pretty_printer_section] + +fn main() { + let stack_val: (i16, f32) = (-14, -19f32); + let stack_val_ref: &(i16, f32) = &stack_val; + let ref_to_unnamed: &(i16, f32) = &(-15, -20f32); + + let unique_val: Box<(i16, f32)> = Box::new((-17, -22f32)); + let unique_val_ref: &(i16, f32) = &*unique_val; + + zzz(); // #break +} + +fn zzz() {()} |