Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
impl-trait
/
unsize-cast-validation-rpit.rs
blob: cace30aca8a6d38389d05bc91480abe34d40f6db [
file
] [
log
] [
blame
]
//@ check-pass
//@ compile-flags: -Zvalidate-mir
fn
hello
()
->
&
'
static
[
impl
Sized
;
0
]
{
if
false
{
let
x
=
hello
();
let
_
:
&[
i32
]
=
x
;
}
&[]
}
fn
main
()
{}