mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +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() {}
|