mirror of
https://github.com/rust-lang/rust.git
synced 2026-01-20 11:10:39 +00:00
7 lines
157 B
Rust
7 lines
157 B
Rust
fn cast_thin_to_fat(x: *const ()) {
|
|
x as *const [u8];
|
|
//~^ ERROR: cannot cast thin pointer `*const ()` to wide pointer `*const [u8]`
|
|
}
|
|
|
|
fn main() {}
|