1error[E0308]: mismatched types
2  --> tests/ui-stable/transmute-mut-src-dst-not-references.rs:17:59
3   |
417 | const SRC_DST_NOT_REFERENCES: &mut usize = transmute_mut!(0usize);
5   |                                            ---------------^^^^^^-
6   |                                            |              |
7   |                                            |              expected `&mut _`, found `usize`
8   |                                            expected due to this
9   |
10   = note: expected mutable reference `&mut _`
11                           found type `usize`
12help: consider mutably borrowing here
13   |
1417 | const SRC_DST_NOT_REFERENCES: &mut usize = transmute_mut!(&mut 0usize);
15   |                                                           ++++
16