]> git.proxmox.com Git - rustc.git/blob - src/test/incremental/struct_change_field_type.rs
New upstream version 1.16.0+dfsg1
[rustc.git] / src / test / incremental / struct_change_field_type.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 incremental compilation tracking where we change nothing
12 // in between revisions (hashing should be stable).
13
14 // revisions:rpass1 rpass2
15 // compile-flags: -Z query-dep-graph
16
17 #![feature(rustc_attrs)]
18
19 #[cfg(rpass1)]
20 pub struct X {
21 pub x: u32
22 }
23
24 #[cfg(rpass2)]
25 pub struct X {
26 pub x: i32
27 }
28
29 pub struct EmbedX {
30 x: X
31 }
32
33 pub struct Y {
34 pub y: char
35 }
36
37 #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
38 pub fn use_X() -> u32 {
39 let x: X = X { x: 22 };
40 x.x as u32
41 }
42
43 #[rustc_dirty(label="TypeckTables", cfg="rpass2")]
44 pub fn use_EmbedX(x: EmbedX) -> u32 {
45 let x: X = X { x: 22 };
46 x.x as u32
47 }
48
49 #[rustc_clean(label="TypeckTables", cfg="rpass2")]
50 pub fn use_Y() {
51 let x: Y = Y { y: 'c' };
52 }
53
54 pub fn main() { }