]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/dirty_clean.rs
Rollup merge of #56476 - GuillaumeGomez:invalid-line-number-match, r=QuietMisdreavus
[rust.git] / src / test / incremental / dirty_clean.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 cfail2
12 // compile-flags: -Z query-dep-graph
13
14 #![allow(warnings)]
15 #![feature(rustc_attrs)]
16
17 // Sanity check for the dirty-clean system. Give the opposite
18 // annotations that we expect to see, so that we check that errors are
19 // reported.
20
21 fn main() { }
22
23 mod x {
24     #[cfg(rpass1)]
25     pub fn x() -> usize {
26         22
27     }
28
29     #[cfg(cfail2)]
30     pub fn x() -> u32 {
31         22
32     }
33 }
34
35 mod y {
36     use x;
37
38     #[rustc_clean(label="TypeckTables", cfg="cfail2")]
39     pub fn y() {
40         //[cfail2]~^ ERROR `TypeckTables(y::y)` should be clean but is not
41         x::x();
42     }
43 }
44
45 mod z {
46     #[rustc_dirty(label="TypeckTables", cfg="cfail2")]
47     pub fn z() {
48         //[cfail2]~^ ERROR `TypeckTables(z::z)` should be dirty but is not
49     }
50 }