2020-06-09 14:36:01 +00:00
|
|
|
error: emptying a vector with `resize`
|
2022-08-31 09:24:45 -04:00
|
|
|
--> $DIR/vec_resize_to_zero.rs:7:5
|
2020-06-09 14:36:01 +00:00
|
|
|
|
|
2022-08-31 09:24:45 -04:00
|
|
|
LL | v.resize(0, 5);
|
|
|
|
| ^^------------
|
|
|
|
| |
|
|
|
|
| help: ...or you can empty the vector with: `clear()`
|
2020-06-09 14:36:01 +00:00
|
|
|
|
|
|
|
|
= help: the arguments may be inverted...
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::vec-resize-to-zero` implied by `-D warnings`
|
2020-06-09 14:36:01 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|