mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
136 lines
5.5 KiB
Text
136 lines
5.5 KiB
Text
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:56:5
|
|
|
|
|
LL | a.i = 42;
|
|
| ^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `main::A { i: 42, ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:55:5
|
|
|
|
|
LL | let mut a: A = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
= note: `-D clippy::field-reassign-with-default` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::field_reassign_with_default)]`
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:96:5
|
|
|
|
|
LL | a.j = 43;
|
|
| ^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `main::A { j: 43, i: 42 }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:95:5
|
|
|
|
|
LL | let mut a: A = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:101:5
|
|
|
|
|
LL | a.i = 42;
|
|
| ^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `main::A { i: 42, j: 44 }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:100:5
|
|
|
|
|
LL | let mut a: A = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:107:5
|
|
|
|
|
LL | a.i = 42;
|
|
| ^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `main::A { i: 42, ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:106:5
|
|
|
|
|
LL | let mut a = A::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:117:5
|
|
|
|
|
LL | a.i = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `main::A { i: Default::default(), ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:116:5
|
|
|
|
|
LL | let mut a: A = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:121:5
|
|
|
|
|
LL | a.i = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `main::A { i: Default::default(), j: 45 }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:120:5
|
|
|
|
|
LL | let mut a: A = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:143:5
|
|
|
|
|
LL | a.i = vec![1];
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `C { i: vec![1], ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:142:5
|
|
|
|
|
LL | let mut a: C = C::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:161:5
|
|
|
|
|
LL | a.i = true;
|
|
| ^^^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `Wrapper::<bool> { i: true }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:160:5
|
|
|
|
|
LL | let mut a: Wrapper<bool> = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:164:5
|
|
|
|
|
LL | a.i = 42;
|
|
| ^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `WrapperMulti::<i32, i64> { i: 42, ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:163:5
|
|
|
|
|
LL | let mut a: WrapperMulti<i32, i64> = Default::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:235:13
|
|
|
|
|
LL | f.name = name.len();
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `issue6312::ImplDropAllCopy { name: name.len(), ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:234:13
|
|
|
|
|
LL | let mut f = ImplDropAllCopy::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: field assignment outside of initializer for an instance created with Default::default()
|
|
--> tests/ui/field_reassign_with_default.rs:251:13
|
|
|
|
|
LL | f.name = name.len();
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: consider initializing the variable with `issue6312::NoDropAllCopy { name: name.len(), ..Default::default() }` and removing relevant reassignments
|
|
--> tests/ui/field_reassign_with_default.rs:250:13
|
|
|
|
|
LL | let mut f = NoDropAllCopy::default();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 11 previous errors
|
|
|