rust/tests/ui/unsafe/ranged_ints4.thirunsafeck.stderr

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

12 lines
413 B
Plaintext
Raw Normal View History

2018-11-05 06:26:07 -06:00
error[E0133]: mutation of layout constrained field is unsafe and requires unsafe function or block
--> $DIR/ranged_ints4.rs:11:5
2018-11-05 06:26:07 -06:00
|
2019-03-09 06:03:44 -06:00
LL | x.0 = 0;
2018-11-05 06:26:07 -06:00
| ^^^^^^^ mutation of layout constrained field
|
= note: mutating layout constrained fields cannot statically be checked for valid values
error: aborting due to previous error
For more information about this error, try `rustc --explain E0133`.