Files
rust/tests/ui/drain_collect_nostd.fixed
T
Guillaume Gomez f666fd6417 Update UI tests
2025-02-15 13:38:16 +01:00

10 lines
179 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)
//~^ drain_collect
}