rust/tests/ui/drain_collect_nostd.fixed
2025-01-28 19:33:54 +01:00

8 lines
156 B
Rust

#![warn(clippy::drain_collect)]
#![no_std]
extern crate alloc;
use alloc::vec::Vec;
fn remove_all(v: &mut Vec<i32>) -> Vec<i32> {
core::mem::take(v)
}