mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
11 lines
211 B
Rust
11 lines
211 B
Rust
//@ 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()
|
|
}
|