]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/box.rs
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / debuginfo / box.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 *a
20 // gdb-check:$1 = 1
21 // gdb-command:print *b
22 // gdbg-check:$2 = {__0 = 2, __1 = 3.5}
23 // gdbr-check:$2 = (2, 3.5)
24
25
26 // === LLDB TESTS ==================================================================================
27
28 // lldb-command:run
29 // lldb-command:print *a
30 // lldb-check:[...]$0 = 1
31 // lldb-command:print *b
32 // lldb-check:[...]$1 = (2, 3.5)
33
34 #![allow(unused_variables)]
35 #![feature(box_syntax)]
36 #![feature(omit_gdb_pretty_printer_section)]
37 #![omit_gdb_pretty_printer_section]
38
39 fn main() {
40     let a = box 1;
41     let b = box (2, 3.5f64);
42
43     zzz(); // #break
44 }
45
46 fn zzz() { () }