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