]> git.proxmox.com Git - rustc.git/blob - src/test/debuginfo/box.rs
Imported Upstream version 1.0.0~0alpha
[rustc.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 // ignore-android: FIXME(#10381)
12 // min-lldb-version: 310
13
14 // compile-flags:-g
15
16 // === GDB TESTS ===================================================================================
17
18 // gdb-command:run
19
20 // gdb-command:print *a
21 // gdb-check:$1 = 1
22 // gdb-command:print *b
23 // gdb-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 #![omit_gdb_pretty_printer_section]
37
38 fn main() {
39 let a = box 1i;
40 let b = box() (2i, 3.5f64);
41
42 zzz(); // #break
43 }
44
45 fn zzz() { () }