Skip to content

Commit

Permalink
Regression test for incremental treatment of rustc_scalar_valid_range…
Browse files Browse the repository at this point in the history
…_{start,end}.
  • Loading branch information
pnkfelix committed Mar 29, 2019
1 parent 7642f10 commit cbbd4d5
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// 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.

// revisions: rpass1 rpass2
// compile-pass

#![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;
}

0 comments on commit cbbd4d5

Please sign in to comment.