]> git.lizzy.rs Git - rust.git/blob - tests/ui/field_reassign_with_default.stderr
Auto merge of #6520 - phansch:update-changelog, r=flip1995
[rust.git] / tests / ui / field_reassign_with_default.stderr
1 error: field assignment outside of initializer for an instance created with Default::default()
2   --> $DIR/field_reassign_with_default.rs:30:5
3    |
4 LL |     a.i = 42;
5    |     ^^^^^^^^^
6    |
7    = note: `-D clippy::field-reassign-with-default` implied by `-D warnings`
8 note: consider initializing the variable with `A { i: 42, ..Default::default() }` and removing relevant reassignments
9   --> $DIR/field_reassign_with_default.rs:29:5
10    |
11 LL |     let mut a: A = Default::default();
12    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
14 error: field assignment outside of initializer for an instance created with Default::default()
15   --> $DIR/field_reassign_with_default.rs:70:5
16    |
17 LL |     a.j = 43;
18    |     ^^^^^^^^^
19    |
20 note: consider initializing the variable with `A { j: 43, i: 42 }` and removing relevant reassignments
21   --> $DIR/field_reassign_with_default.rs:69:5
22    |
23 LL |     let mut a: A = Default::default();
24    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25
26 error: field assignment outside of initializer for an instance created with Default::default()
27   --> $DIR/field_reassign_with_default.rs:75:5
28    |
29 LL |     a.i = 42;
30    |     ^^^^^^^^^
31    |
32 note: consider initializing the variable with `A { i: 42, j: 44 }` and removing relevant reassignments
33   --> $DIR/field_reassign_with_default.rs:74:5
34    |
35 LL |     let mut a: A = Default::default();
36    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
37
38 error: field assignment outside of initializer for an instance created with Default::default()
39   --> $DIR/field_reassign_with_default.rs:81:5
40    |
41 LL |     a.i = 42;
42    |     ^^^^^^^^^
43    |
44 note: consider initializing the variable with `A { i: 42, ..Default::default() }` and removing relevant reassignments
45   --> $DIR/field_reassign_with_default.rs:80:5
46    |
47 LL |     let mut a = A::default();
48    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
49
50 error: field assignment outside of initializer for an instance created with Default::default()
51   --> $DIR/field_reassign_with_default.rs:91:5
52    |
53 LL |     a.i = Default::default();
54    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
55    |
56 note: consider initializing the variable with `A { i: Default::default(), ..Default::default() }` and removing relevant reassignments
57   --> $DIR/field_reassign_with_default.rs:90:5
58    |
59 LL |     let mut a: A = Default::default();
60    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
61
62 error: field assignment outside of initializer for an instance created with Default::default()
63   --> $DIR/field_reassign_with_default.rs:95:5
64    |
65 LL |     a.i = Default::default();
66    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
67    |
68 note: consider initializing the variable with `A { i: Default::default(), j: 45 }` and removing relevant reassignments
69   --> $DIR/field_reassign_with_default.rs:94:5
70    |
71 LL |     let mut a: A = Default::default();
72    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
73
74 error: aborting due to 6 previous errors
75