]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/string_constant.rs
Rollup merge of #56476 - GuillaumeGomez:invalid-line-number-match, r=QuietMisdreavus
[rust.git] / src / test / incremental / string_constant.rs
1 // Copyright 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 // revisions: cfail1 cfail2
12 // compile-flags: -Z query-dep-graph
13 // compile-pass
14
15 #![allow(warnings)]
16 #![feature(rustc_attrs)]
17 #![crate_type = "rlib"]
18
19 // Here the only thing which changes is the string constant in `x`.
20 // Therefore, the compiler deduces (correctly) that typeck is not
21 // needed even for callers of `x`.
22
23
24 pub mod x {
25     #[cfg(cfail1)]
26     pub fn x() {
27         println!("{}", "1");
28     }
29
30     #[cfg(cfail2)]
31     #[rustc_dirty(label="HirBody", cfg="cfail2")]
32     #[rustc_dirty(label="MirOptimized", cfg="cfail2")]
33     pub fn x() {
34         println!("{}", "2");
35     }
36 }
37
38 pub mod y {
39     use x;
40
41     #[rustc_clean(label="TypeckTables", cfg="cfail2")]
42     #[rustc_clean(label="MirOptimized", cfg="cfail2")]
43     pub fn y() {
44         x::x();
45     }
46 }
47
48 pub mod z {
49     use y;
50
51     #[rustc_clean(label="TypeckTables", cfg="cfail2")]
52     #[rustc_clean(label="MirOptimized", cfg="cfail2")]
53     pub fn z() {
54         y::y();
55     }
56 }