mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
13 lines
188 B
Rust
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() {}
|