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