]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsafe/ranged_ints.thir.stderr
Rollup merge of #95376 - WaffleLapkin:drain_keep_rest, r=dtolnay
[rust.git] / src / test / ui / unsafe / ranged_ints.thir.stderr
1 error[E0133]: initializing type with `rustc_layout_scalar_valid_range` attr is unsafe and requires unsafe function or block
2   --> $DIR/ranged_ints.rs:10:14
3    |
4 LL |     let _x = NonZero(0);
5    |              ^^^^^^^^^^ initializing type with `rustc_layout_scalar_valid_range` attr
6    |
7    = note: initializing a layout restricted type's field with a value outside the valid range is undefined behavior
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0133`.