]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/borrowed-tuple.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[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 // gdb-check:$1 = {__0 = -14, __1 = -19}
21
22 // gdb-command:print *ref_to_unnamed
23 // gdb-check:$2 = {__0 = -15, __1 = -20}
24
25 // gdb-command:print *unique_val_ref
26 // gdb-check:$3 = {__0 = -17, __1 = -22}
27
28
29 // === LLDB TESTS ==================================================================================
30
31 // lldb-command:run
32
33 // lldb-command:print *stack_val_ref
34 // lldb-check:[...]$0 = (-14, -19)
35
36 // lldb-command:print *ref_to_unnamed
37 // lldb-check:[...]$1 = (-15, -20)
38
39 // lldb-command:print *unique_val_ref
40 // lldb-check:[...]$2 = (-17, -22)
41
42
43 #![allow(unused_variables)]
44 #![feature(box_syntax)]
45 #![feature(omit_gdb_pretty_printer_section)]
46 #![omit_gdb_pretty_printer_section]
47
48 fn main() {
49     let stack_val: (i16, f32) = (-14, -19f32);
50     let stack_val_ref: &(i16, f32) = &stack_val;
51     let ref_to_unnamed: &(i16, f32) = &(-15, -20f32);
52
53     let unique_val: Box<(i16, f32)> = box (-17, -22f32);
54     let unique_val_ref: &(i16, f32) = &*unique_val;
55
56     zzz(); // #break
57 }
58
59 fn zzz() {()}