mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
55 lines
1.5 KiB
Rust
55 lines
1.5 KiB
Rust
// 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() {()}
|