]> git.proxmox.com Git - rustc.git/blame - src/test/incremental/dirty_clean.rs
New upstream version 1.16.0+dfsg1
[rustc.git] / src / test / incremental / dirty_clean.rs
CommitLineData
54a0048b
SL
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
5bcae85e 12// compile-flags: -Z query-dep-graph
54a0048b
SL
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
21fn main() { }
22
23mod 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
35mod y {
36 use x;
37
32a655c1 38 #[rustc_clean(label="TypeckTables", cfg="cfail2")]
54a0048b
SL
39 #[rustc_clean(label="TransCrateItem", cfg="cfail2")]
40 pub fn y() {
32a655c1 41 //[cfail2]~^ ERROR `TypeckTables("y::y")` not found in dep graph, but should be clean
54a0048b
SL
42 //[cfail2]~| ERROR `TransCrateItem("y::y")` not found in dep graph, but should be clean
43 x::x();
44 }
45}
46
47mod z {
32a655c1 48 #[rustc_dirty(label="TypeckTables", cfg="cfail2")]
54a0048b
SL
49 #[rustc_dirty(label="TransCrateItem", cfg="cfail2")]
50 pub fn z() {
32a655c1 51 //[cfail2]~^ ERROR `TypeckTables("z::z")` found in dep graph, but should be dirty
54a0048b
SL
52 //[cfail2]~| ERROR `TransCrateItem("z::z")` found in dep graph, but should be dirty
53 }
54}