]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/unchecked_dirty_clean_metadata.rs
Rollup merge of #41087 - estebank:tuple-float-index, r=arielb1
[rust.git] / src / test / incremental / unchecked_dirty_clean_metadata.rs
1 // Copyright 2017 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. We add
18 // #[rustc_metadata_dirty]/#[rustc_metadata_clean] attributes in places that
19 // are not checked and make sure that this causes an error.
20
21 fn main() {
22
23     #[rustc_metadata_dirty(cfg="cfail2")]
24     //[cfail2]~^ ERROR found unchecked #[rustc_dirty]/#[rustc_clean] attribute
25     {
26         // empty block
27     }
28
29     #[rustc_metadata_clean(cfg="cfail2")]
30     //[cfail2]~^ ERROR found unchecked #[rustc_dirty]/#[rustc_clean] attribute
31     {
32         // empty block
33     }
34 }
35
36 struct _Struct {
37     #[rustc_metadata_dirty(cfg="cfail2")]
38     //[cfail2]~^ ERROR found unchecked #[rustc_dirty]/#[rustc_clean] attribute
39     _field1: i32,
40
41     #[rustc_metadata_clean(cfg="cfail2")]
42     //[cfail2]~^ ERROR found unchecked #[rustc_dirty]/#[rustc_clean] attribute
43     _field2: i32,
44 }
45