12 lines
265 B
Rust
12 lines
265 B
Rust
//@ ignore-debug: the debug assertions get in the way
|
|
//@ compile-flags: -O
|
|
#![crate_type="lib"]
|
|
|
|
#[no_mangle]
|
|
pub fn get_len() -> usize {
|
|
// CHECK-LABEL: @get_len
|
|
// CHECK-NOT: call
|
|
// CHECK-NOT: invoke
|
|
[1, 2, 3].iter().collect::<Vec<_>>().len()
|
|
}
|