diff options
Diffstat (limited to 'src/test/debuginfo/borrowed-tuple.rs')
| -rw-r--r-- | src/test/debuginfo/borrowed-tuple.rs | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/src/test/debuginfo/borrowed-tuple.rs b/src/test/debuginfo/borrowed-tuple.rs deleted file mode 100644 index cc28e49c447..00000000000 --- a/src/test/debuginfo/borrowed-tuple.rs +++ /dev/null @@ -1,54 +0,0 @@ -// 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() {()} |
