summaryrefslogtreecommitdiffstats
path: root/tests/debuginfo/borrowed-tuple.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/debuginfo/borrowed-tuple.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/debuginfo/borrowed-tuple.rs')
-rw-r--r--tests/debuginfo/borrowed-tuple.rs54
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() {()}