mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
281 B
Rust
13 lines
281 B
Rust
// ignore-debug: the debug assertions get in the way
|
|
// no-system-llvm
|
|
// 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()
|
|
}
|