2019-03-29 14:05:03 +00:00
|
|
|
// We should not see the unused_attributes lint fire for
|
|
|
|
// rustc_layout_scalar_valid_range_start, but with this bug we are
|
|
|
|
// seeing it fire (on subsequent runs) if incremental compilation is
|
|
|
|
// enabled.
|
|
|
|
|
2019-06-12 14:56:51 +00:00
|
|
|
// revisions: cfail1 cfail2
|
2019-07-02 21:30:28 +00:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2019-03-29 14:05:03 +00:00
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![deny(unused_attributes)]
|
|
|
|
|
|
|
|
#[rustc_layout_scalar_valid_range_start(10)]
|
|
|
|
#[rustc_layout_scalar_valid_range_end(30)]
|
|
|
|
struct RestrictedRange(u32);
|
|
|
|
const OKAY_RANGE: RestrictedRange = unsafe { RestrictedRange(20) };
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
OKAY_RANGE.0;
|
|
|
|
}
|