rust/tests/ui/impl-trait/unsize-cast-validation-rpit.rs

13 lines
188 B
Rust

//@ check-pass
//@ compile-flags: -Zvalidate-mir
fn hello() -> &'static [impl Sized; 0] {
if false {
let x = hello();
let _: &[i32] = x;
}
&[]
}
fn main() {}