]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsafe/ranged_ints3.mirunsafeck.stderr
Rollup merge of #94577 - RalfJung:simd-miri, r=scottmcm
[rust.git] / src / test / ui / unsafe / ranged_ints3.mirunsafeck.stderr
1 error[E0133]: borrow of layout constrained field with interior mutability is unsafe and requires unsafe function or block
2   --> $DIR/ranged_ints3.rs:13:13
3    |
4 LL |     let y = &x.0;
5    |             ^^^^ borrow of layout constrained field with interior mutability
6    |
7    = note: references to fields of layout constrained fields lose the constraints. Coupled with interior mutability, the field can be changed to invalid values
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0133`.