rust/tests/ui/unsafe/initializing-ranged-via-cto...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
294 B
Rust
Raw Normal View History

#![feature(rustc_attrs)]
#![allow(internal_features)]
#[derive(Debug)]
#[rustc_layout_scalar_valid_range_start(2)]
struct NonZeroAndOneU8(u8);
fn main() {
println!("{:?}", Some(1).map(NonZeroAndOneU8).unwrap());
//~^ ERROR found `unsafe fn(u8) -> NonZeroAndOneU8 {NonZeroAndOneU8}`
}