2017-02-03 12:07:15 -06:00
|
|
|
// revisions: rpass1 cfail2
|
|
|
|
// compile-flags: -Z query-dep-graph
|
|
|
|
|
|
|
|
#![allow(warnings)]
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
2021-05-16 03:14:57 -05:00
|
|
|
// Sanity check for the dirty-clean system. We add #[rustc_clean]
|
2017-02-03 12:07:15 -06:00
|
|
|
// attributes in places that are not checked and make sure that this causes an
|
|
|
|
// error.
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
2021-05-15 06:20:42 -05:00
|
|
|
#[rustc_clean(except="hir_owner", cfg="cfail2")]
|
2021-05-16 03:14:57 -05:00
|
|
|
//[cfail2]~^ ERROR found unchecked `#[rustc_clean]` attribute
|
2017-02-03 12:07:15 -06:00
|
|
|
{
|
|
|
|
// empty block
|
|
|
|
}
|
|
|
|
|
2021-05-15 06:20:42 -05:00
|
|
|
#[rustc_clean(cfg="cfail2")]
|
2021-05-16 03:14:57 -05:00
|
|
|
//[cfail2]~^ ERROR found unchecked `#[rustc_clean]` attribute
|
2017-02-03 12:07:15 -06:00
|
|
|
{
|
|
|
|
// empty block
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct _Struct {
|
2021-05-15 06:20:42 -05:00
|
|
|
#[rustc_clean(except="hir_owner", cfg="cfail2")]
|
2021-05-16 03:14:57 -05:00
|
|
|
//[cfail2]~^ ERROR found unchecked `#[rustc_clean]` attribute
|
2017-02-03 12:07:15 -06:00
|
|
|
_field1: i32,
|
|
|
|
|
2021-05-15 06:20:42 -05:00
|
|
|
#[rustc_clean(cfg="cfail2")]
|
2021-05-16 03:14:57 -05:00
|
|
|
//[cfail2]~^ ERROR found unchecked `#[rustc_clean]` attribute
|
2017-02-03 12:07:15 -06:00
|
|
|
_field2: i32,
|
|
|
|
}
|