Files
rust/tests/debuginfo/borrowed-tuple.rs
T
2026-04-02 09:44:38 -05:00

47 lines
1.1 KiB
Rust

//@ compile-flags:-g
//@ disable-gdb-pretty-printers
//@ ignore-backends: gcc
// === GDB TESTS ===================================================================================
//@ gdb-command:run
//@ gdb-command:print *stack_val_ref
//@ gdb-check:$1 = (-14, -19)
//@ gdb-command:print *ref_to_unnamed
//@ gdb-check:$2 = (-15, -20)
//@ gdb-command:print *unique_val_ref
//@ gdb-check:$3 = (-17, -22)
// === LLDB TESTS ==================================================================================
//@ lldb-command:run
//@ lldb-command:v *stack_val_ref
//@ lldb-check:[...] (-14, -19)
//@ lldb-command:v *ref_to_unnamed
//@ lldb-check:[...] (-15, -20)
//@ lldb-command:v *unique_val_ref
//@ lldb-check:[...] (-17, -22)
#![allow(unused_variables)]
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() {()}