2020-04-29 03:41:34 +00:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/issue-32122-2.rs:27:24
|
|
|
|
|
|
|
|
|
LL | let _: *const u8 = &a;
|
2023-01-03 02:00:33 +00:00
|
|
|
| --------- ^^ expected `*const u8`, found `&Emm`
|
2021-06-28 18:22:47 +00:00
|
|
|
| |
|
2020-04-29 03:41:34 +00:00
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
|
= note: expected raw pointer `*const u8`
|
|
|
|
found reference `&Emm`
|
2021-06-28 18:22:47 +00:00
|
|
|
help: consider dereferencing
|
|
|
|
|
|
|
|
|
LL | let _: *const u8 = &***a;
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++
|
2020-04-29 03:41:34 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|