rust-clippy/tests/ui/vec_resize_to_zero.stderr
Nilstrieb c2c73189c8 Bless clippy tests
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

14 lines
446 B
Text

error: emptying a vector with `resize`
--> $DIR/vec_resize_to_zero.rs:7:5
|
LL | v.resize(0, 5);
| ^^------------
| |
| help: ...or you can empty the vector with: `clear()`
|
= help: the arguments may be inverted...
= note: `-D clippy::vec-resize-to-zero` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::vec_resize_to_zero)]`
error: aborting due to 1 previous error