2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
//@ compile-flags: -Copt-level=0 -Cdebuginfo=2
|
2021-03-11 22:55:11 +01:00
|
|
|
|
|
|
|
// Make sure LLVM does not miscompile this.
|
|
|
|
|
|
|
|
fn indirect_get_slice() -> &'static [usize] {
|
|
|
|
&[]
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn get_slice() -> &'static [usize] {
|
|
|
|
let ret = indirect_get_slice();
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let output = get_slice().len();
|
|
|
|
assert_eq!(output, 0);
|
|
|
|
}
|