]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/struct_change_field_name.rs
Update E0253.rs
[rust.git] / src / test / incremental / struct_change_field_name.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 field names
12 // in between revisions (hashing should be stable).
13
14 // revisions:rpass1 cfail2
15
16 #![feature(rustc_attrs)]
17
18 #[cfg(rpass1)]
19 pub struct X {
20     pub x: u32
21 }
22
23 #[cfg(cfail2)]
24 pub struct X {
25     pub y: u32
26 }
27
28 pub struct EmbedX {
29     x: X
30 }
31
32 pub struct Y {
33     pub y: char
34 }
35
36 #[rustc_dirty(label="TypeckItemBody", cfg="cfail2")]
37 pub fn use_X() -> u32 {
38     let x: X = X { x: 22 };
39     //[cfail2]~^ ERROR structure `X` has no field named `x`
40     x.x as u32
41     //[cfail2]~^ ERROR attempted access of field `x`
42 }
43
44 #[rustc_dirty(label="TypeckItemBody", cfg="cfail2")]
45 pub fn use_EmbedX(embed: EmbedX) -> u32 {
46     embed.x.x as u32
47     //[cfail2]~^ ERROR attempted access of field `x`
48 }
49
50 #[rustc_clean(label="TypeckItemBody", cfg="cfail2")]
51 pub fn use_Y() {
52     let x: Y = Y { y: 'c' };
53 }
54
55 pub fn main() { }