Edit: this is just a stage 0 problem, so we can conditionally ignore those warnings for now.
rustc_layout_scalar_valid_range_start requires unsafe, but does not cause unsafe blocks to be counted as "used", meaning that the following:
is warned as unused, but removing the
unsafe causes an error.
Edit: this is just a stage 0 problem, so we can conditionally ignore those warnings for now.
rustc_layout_scalar_valid_range_startrequiresunsafe, but does not causeunsafeblocks to be counted as "used", meaning that the following:rust/src/libcore/num/mod.rs
Line 71 in 3cda631
is warned as unused, but removing the
unsafecauses an error.