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() {}