]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-32122-2.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-32122-2.stderr
1 error[E0308]: mismatched types
2 --> $DIR/issue-32122-2.rs:27:24
3 |
4 LL | let _: *const u8 = &a;
5 | --------- ^^
6 | | |
7 | | expected `u8`, found struct `Emm`
8 | | help: consider dereferencing: `&***a`
9 | expected due to this
10 |
11 = note: expected raw pointer `*const u8`
12 found reference `&Emm`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0308`.