Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
coercion
/
coerce-to-bang-cast.rs
blob: 85598a42eccd9bdc26534ab1752ca3987afb1227 [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
never_type
)]
fn
cast_a
()
{
let
y
=
{
return
;
22
}
as
!;
//~^ ERROR non-primitive cast
}
fn
cast_b
()
{
let
y
=
22
as
!;
//~ ERROR non-primitive cast
}
fn
main
()
{
}