]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/borrowed-tuple.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / debuginfo / borrowed-tuple.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // min-lldb-version: 310
12
13 // compile-flags:-g
14
15 // === GDB TESTS ===================================================================================
16
17 // gdb-command:run
18
19 // gdb-command:print *stack_val_ref
20 // gdbg-check:$1 = {__0 = -14, __1 = -19}
21 // gdbr-check:$1 = (-14, -19)
22
23 // gdb-command:print *ref_to_unnamed
24 // gdbg-check:$2 = {__0 = -15, __1 = -20}
25 // gdbr-check:$2 = (-15, -20)
26
27 // gdb-command:print *unique_val_ref
28 // gdbg-check:$3 = {__0 = -17, __1 = -22}
29 // gdbr-check:$3 = (-17, -22)
30
31
32 // === LLDB TESTS ==================================================================================
33
34 // lldb-command:run
35
36 // lldb-command:print *stack_val_ref
37 // lldb-check:[...]$0 = (-14, -19)
38
39 // lldb-command:print *ref_to_unnamed
40 // lldb-check:[...]$1 = (-15, -20)
41
42 // lldb-command:print *unique_val_ref
43 // lldb-check:[...]$2 = (-17, -22)
44
45
46 #![allow(unused_variables)]
47 #![feature(box_syntax)]
48 #![feature(omit_gdb_pretty_printer_section)]
49 #![omit_gdb_pretty_printer_section]
50
51 fn main() {
52     let stack_val: (i16, f32) = (-14, -19f32);
53     let stack_val_ref: &(i16, f32) = &stack_val;
54     let ref_to_unnamed: &(i16, f32) = &(-15, -20f32);
55
56     let unique_val: Box<(i16, f32)> = box (-17, -22f32);
57     let unique_val_ref: &(i16, f32) = &*unique_val;
58
59     zzz(); // #break
60 }
61
62 fn zzz() {()}