]> git.lizzy.rs Git - rust.git/blob - tests/ui/cast/cast-macro-lhs.stderr
Rollup merge of #106896 - Ezrashaw:str-cast-bool-emptyness, r=compiler-errors
[rust.git] / tests / 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`.