2019-03-29 09:05:03 -05: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 09:56:51 -05:00
|
|
|
//@ revisions: cfail1 cfail2
|
2019-07-02 16:30:28 -05:00
|
|
|
//@ build-pass (FIXME(62277): could be check-pass?)
|
2019-03-29 09:05:03 -05: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;
|
|
|
|
}
|