mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
308 B
Rust
16 lines
308 B
Rust
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
|
// unit-test: LowerSliceLenCalls
|
|
|
|
// EMIT_MIR lower_slice_len.bound.LowerSliceLenCalls.diff
|
|
pub fn bound(index: usize, slice: &[u8]) -> u8 {
|
|
if index < slice.len() {
|
|
slice[index]
|
|
} else {
|
|
42
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let _ = bound(1, &[1, 2, 3]);
|
|
}
|