]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/no-debug-attribute.rs
rollup merge of #20350: fhahn/issue-20340-rustdoc-version
[rust.git] / src / test / debuginfo / no-debug-attribute.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 // ignore-lldb
13
14 // compile-flags:-g
15
16 // gdb-command:run
17
18 // gdb-command:info locals
19 // gdb-check:No locals.
20 // gdb-command:continue
21
22 // gdb-command:info locals
23 // gdb-check:abc = 10
24 // gdb-command:continue
25
26 #![allow(unused_variables)]
27 #![omit_gdb_pretty_printer_section]
28
29 fn function_with_debuginfo() {
30     let abc = 10u;
31     return (); // #break
32 }
33
34 #[no_debug]
35 fn function_without_debuginfo() {
36     let abc = -57i32;
37     return (); // #break
38 }
39
40 fn main() {
41     function_without_debuginfo();
42     function_with_debuginfo();
43 }
44