Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
issues
/
issue-31511.rs
blob: 6c8df1157c6c8001a9c733b7bd979e37c25571e8 [
file
]
fn
cast_thin_to_fat
(
x
:
*
const
())
{
x
as
*
const
[
u8
];
//~^ ERROR: cannot cast thin pointer `*const ()` to wide pointer `*const [u8]`
}
fn
main
()
{}