]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/tuple-in-tuple.rs
Auto merge of #23934 - lfairy:write-no-deref, r=alexcrichton
[rust.git] / src / test / debuginfo / tuple-in-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 no_padding1
20 // gdb-check:$1 = {{0, 1}, 2, 3}
21 // gdb-command:print no_padding2
22 // gdb-check:$2 = {4, {5, 6}, 7}
23 // gdb-command:print no_padding3
24 // gdb-check:$3 = {8, 9, {10, 11}}
25
26 // gdb-command:print internal_padding1
27 // gdb-check:$4 = {12, {13, 14}}
28 // gdb-command:print internal_padding2
29 // gdb-check:$5 = {15, {16, 17}}
30
31 // gdb-command:print padding_at_end1
32 // gdb-check:$6 = {18, {19, 20}}
33 // gdb-command:print padding_at_end2
34 // gdb-check:$7 = {{21, 22}, 23}
35
36
37 // === LLDB TESTS ==================================================================================
38
39 // lldb-command:run
40
41 // lldb-command:print no_padding1
42 // lldb-check:[...]$0 = ((0, 1), 2, 3)
43 // lldb-command:print no_padding2
44 // lldb-check:[...]$1 = (4, (5, 6), 7)
45 // lldb-command:print no_padding3
46 // lldb-check:[...]$2 = (8, 9, (10, 11))
47
48 // lldb-command:print internal_padding1
49 // lldb-check:[...]$3 = (12, (13, 14))
50 // lldb-command:print internal_padding2
51 // lldb-check:[...]$4 = (15, (16, 17))
52
53 // lldb-command:print padding_at_end1
54 // lldb-check:[...]$5 = (18, (19, 20))
55 // lldb-command:print padding_at_end2
56 // lldb-check:[...]$6 = ((21, 22), 23)
57
58 #![allow(unused_variables)]
59 #![omit_gdb_pretty_printer_section]
60
61 fn main() {
62     let no_padding1: ((u32, u32), u32, u32) = ((0, 1), 2, 3);
63     let no_padding2: (u32, (u32, u32), u32) = (4, (5, 6), 7);
64     let no_padding3: (u32, u32, (u32, u32)) = (8, 9, (10, 11));
65
66     let internal_padding1: (i16, (i32, i32)) = (12, (13, 14));
67     let internal_padding2: (i16, (i16, i32)) = (15, (16, 17));
68
69     let padding_at_end1: (i32, (i32, i16)) = (18, (19, 20));
70     let padding_at_end2: ((i32, i16), i32) = ((21, 22), 23);
71
72     zzz(); // #break
73 }
74
75 fn zzz() {()}