rust/tests/codegen/issues/issue-101082.rs
2023-11-21 22:40:16 +01:00

17 lines
322 B
Rust

// compile-flags: -O
// ignore-debug: the debug assertions get in the way
#![crate_type = "lib"]
#[no_mangle]
pub fn test() -> usize {
// CHECK-LABEL: @test(
// CHECK: ret {{i64|i32}} 165
let values = [23, 16, 54, 3, 60, 9];
let mut acc = 0;
for item in values {
acc += item;
}
acc
}