mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-20 07:58:44 +00:00
Use multiple pushes in vec_init_then_push
example
This commit is contained in:
parent
033c763943
commit
e1b287c3a6
1 changed files with 3 additions and 1 deletions
|
@ -33,10 +33,12 @@ declare_clippy_lint! {
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
/// let mut v = Vec::new();
|
/// let mut v = Vec::new();
|
||||||
/// v.push(0);
|
/// v.push(0);
|
||||||
|
/// v.push(1);
|
||||||
|
/// v.push(2);
|
||||||
/// ```
|
/// ```
|
||||||
/// Use instead:
|
/// Use instead:
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
/// let v = vec![0];
|
/// let v = vec![0, 1, 2];
|
||||||
/// ```
|
/// ```
|
||||||
#[clippy::version = "1.51.0"]
|
#[clippy::version = "1.51.0"]
|
||||||
pub VEC_INIT_THEN_PUSH,
|
pub VEC_INIT_THEN_PUSH,
|
||||||
|
|
Loading…
Add table
Reference in a new issue