]> git.lizzy.rs Git - rust.git/blob - src/test/ui/cast/cast-macro-lhs.stderr
Auto merge of #102596 - scottmcm:option-bool-calloc, r=Mark-Simulacrum
[rust.git] / src / test / ui / cast / cast-macro-lhs.stderr
1 error[E0606]: cannot cast `usize` to a pointer that is wide
2   --> $DIR/cast-macro-lhs.rs:8:23
3    |
4 LL |     let x = foo!() as *const [u8];
5    |             ------    ^^^^^^^^^^^ creating a `*const [u8]` requires both an address and a length
6    |             |
7    |             consider casting this expression to `*const ()`, then using `core::ptr::from_raw_parts`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0606`.