Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
error-codes
/
E0605.rs
blob: cfbf1aa2bd76530593dfde6fedccd08699df52e5 [
file
]
fn
main
()
{
let
x
=
0u8
;
x
as
Vec
<
u8
>;
//~ ERROR E0605
let
v
=
std
::
ptr
::
null
::<
u8
>();
v
as
&
u8
;
//~ ERROR E0605
}