mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 20:02:54 +00:00
12 lines
444 B
Plaintext
12 lines
444 B
Plaintext
error[E0308]: mismatched types
|
|
--> tests/ui-stable/transmute-mut-src-immutable.rs:17:37
|
|
|
|
|
17 | let _: &mut u8 = transmute_mut!(&0u8);
|
|
| ---------------^^^^-
|
|
| | |
|
|
| | types differ in mutability
|
|
| expected due to this
|
|
|
|
|
= note: expected mutable reference `&mut _`
|
|
found reference `&u8`
|