]> git.proxmox.com Git - rustc.git/blob - src/test/ui/unsafe/ranged_ints.stderr
New upstream version 1.53.0+dfsg1
[rustc.git] / src / test / ui / unsafe / ranged_ints.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:7: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`.