]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/crate_hash_reorder.rs
Auto merge of #54497 - ralexstokes:stabilize_pattern_parentheses, r=nikomatsakis
[rust.git] / src / test / incremental / crate_hash_reorder.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 // Test that the crate hash is not affected by reordering items.
12
13 // revisions:rpass1 rpass2 rpass3
14 // compile-flags: -Z query-dep-graph
15
16 #![feature(rustc_attrs)]
17
18 // Check that reordering otherwise identical items is not considered a
19 // change at all.
20 #[rustc_clean(label="Krate", cfg="rpass2")]
21
22 // But removing an item, naturally, is.
23 #[rustc_dirty(label="Krate", cfg="rpass3")]
24
25 #[cfg(rpass1)]
26 pub struct X {
27     pub x: u32,
28 }
29
30 pub struct Y {
31     pub x: u32,
32 }
33
34 #[cfg(rpass2)]
35 pub struct X {
36     pub x: u32,
37 }
38
39 pub fn main() { }