]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/function-arguments.rs
Rollup merge of #30020 - Manishearth:unit, r=bluss
[rust.git] / src / test / debuginfo / function-arguments.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 x
20 // gdb-check:$1 = 111102
21 // gdb-command:print y
22 // gdb-check:$2 = true
23 // gdb-command:continue
24
25 // gdb-command:print a
26 // gdb-check:$3 = 2000
27 // gdb-command:print b
28 // gdb-check:$4 = 3000
29 // gdb-command:continue
30
31 // === LLDB TESTS ==================================================================================
32
33 // lldb-command:run
34
35 // lldb-command:print x
36 // lldb-check:[...]$0 = 111102
37 // lldb-command:print y
38 // lldb-check:[...]$1 = true
39 // lldb-command:continue
40
41 // lldb-command:print a
42 // lldb-check:[...]$2 = 2000
43 // lldb-command:print b
44 // lldb-check:[...]$3 = 3000
45 // lldb-command:continue
46
47
48 #![feature(omit_gdb_pretty_printer_section)]
49 #![omit_gdb_pretty_printer_section]
50
51 fn main() {
52
53     fun(111102, true);
54     nested(2000, 3000);
55
56     fn nested(a: i32, b: i64) -> (i32, i64) {
57         zzz(); // #break
58         (a, b)
59     }
60 }
61
62 fn fun(x: isize, y: bool) -> (isize, bool) {
63     zzz(); // #break
64
65     (x, y)
66 }
67
68 fn zzz() { () }