|
1 | 1 | error: field assignment outside of initializer for an instance created with Default::default()
|
2 |
| - --> $DIR/field_reassign_with_default.rs:35:5 |
| 2 | + --> $DIR/field_reassign_with_default.rs:48:5 |
3 | 3 | |
|
4 | 4 | LL | a.i = 42;
|
5 | 5 | | ^^^^^^^^^
|
6 | 6 | |
|
7 | 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:34:5 |
| 8 | +note: consider initializing the variable with `main::A { i: 42, ..Default::default() }` and removing relevant reassignments |
| 9 | + --> $DIR/field_reassign_with_default.rs:47:5 |
10 | 10 | |
|
11 | 11 | LL | let mut a: A = Default::default();
|
12 | 12 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
13 | 13 |
|
14 | 14 | error: field assignment outside of initializer for an instance created with Default::default()
|
15 |
| - --> $DIR/field_reassign_with_default.rs:75:5 |
| 15 | + --> $DIR/field_reassign_with_default.rs:88:5 |
16 | 16 | |
|
17 | 17 | LL | a.j = 43;
|
18 | 18 | | ^^^^^^^^^
|
19 | 19 | |
|
20 |
| -note: consider initializing the variable with `A { j: 43, i: 42 }` and removing relevant reassignments |
21 |
| - --> $DIR/field_reassign_with_default.rs:74:5 |
| 20 | +note: consider initializing the variable with `main::A { j: 43, i: 42 }` and removing relevant reassignments |
| 21 | + --> $DIR/field_reassign_with_default.rs:87:5 |
22 | 22 | |
|
23 | 23 | LL | let mut a: A = Default::default();
|
24 | 24 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
25 | 25 |
|
26 | 26 | error: field assignment outside of initializer for an instance created with Default::default()
|
27 |
| - --> $DIR/field_reassign_with_default.rs:80:5 |
| 27 | + --> $DIR/field_reassign_with_default.rs:93:5 |
28 | 28 | |
|
29 | 29 | LL | a.i = 42;
|
30 | 30 | | ^^^^^^^^^
|
31 | 31 | |
|
32 |
| -note: consider initializing the variable with `A { i: 42, j: 44 }` and removing relevant reassignments |
33 |
| - --> $DIR/field_reassign_with_default.rs:79:5 |
| 32 | +note: consider initializing the variable with `main::A { i: 42, j: 44 }` and removing relevant reassignments |
| 33 | + --> $DIR/field_reassign_with_default.rs:92:5 |
34 | 34 | |
|
35 | 35 | LL | let mut a: A = Default::default();
|
36 | 36 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
37 | 37 |
|
38 | 38 | error: field assignment outside of initializer for an instance created with Default::default()
|
39 |
| - --> $DIR/field_reassign_with_default.rs:86:5 |
| 39 | + --> $DIR/field_reassign_with_default.rs:99:5 |
40 | 40 | |
|
41 | 41 | LL | a.i = 42;
|
42 | 42 | | ^^^^^^^^^
|
43 | 43 | |
|
44 |
| -note: consider initializing the variable with `A { i: 42, ..Default::default() }` and removing relevant reassignments |
45 |
| - --> $DIR/field_reassign_with_default.rs:85:5 |
| 44 | +note: consider initializing the variable with `main::A { i: 42, ..Default::default() }` and removing relevant reassignments |
| 45 | + --> $DIR/field_reassign_with_default.rs:98:5 |
46 | 46 | |
|
47 | 47 | LL | let mut a = A::default();
|
48 | 48 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
49 | 49 |
|
50 | 50 | error: field assignment outside of initializer for an instance created with Default::default()
|
51 |
| - --> $DIR/field_reassign_with_default.rs:96:5 |
| 51 | + --> $DIR/field_reassign_with_default.rs:109:5 |
52 | 52 | |
|
53 | 53 | LL | a.i = Default::default();
|
54 | 54 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
55 | 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:95:5 |
| 56 | +note: consider initializing the variable with `main::A { i: Default::default(), ..Default::default() }` and removing relevant reassignments |
| 57 | + --> $DIR/field_reassign_with_default.rs:108:5 |
58 | 58 | |
|
59 | 59 | LL | let mut a: A = Default::default();
|
60 | 60 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
61 | 61 |
|
62 | 62 | error: field assignment outside of initializer for an instance created with Default::default()
|
63 |
| - --> $DIR/field_reassign_with_default.rs:100:5 |
| 63 | + --> $DIR/field_reassign_with_default.rs:113:5 |
64 | 64 | |
|
65 | 65 | LL | a.i = Default::default();
|
66 | 66 | | ^^^^^^^^^^^^^^^^^^^^^^^^^
|
67 | 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:99:5 |
| 68 | +note: consider initializing the variable with `main::A { i: Default::default(), j: 45 }` and removing relevant reassignments |
| 69 | + --> $DIR/field_reassign_with_default.rs:112:5 |
70 | 70 | |
|
71 | 71 | LL | let mut a: A = Default::default();
|
72 | 72 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
73 | 73 |
|
74 | 74 | error: field assignment outside of initializer for an instance created with Default::default()
|
75 |
| - --> $DIR/field_reassign_with_default.rs:122:5 |
| 75 | + --> $DIR/field_reassign_with_default.rs:135:5 |
76 | 76 | |
|
77 | 77 | LL | a.i = vec![1];
|
78 | 78 | | ^^^^^^^^^^^^^^
|
79 | 79 | |
|
80 | 80 | note: consider initializing the variable with `C { i: vec![1], ..Default::default() }` and removing relevant reassignments
|
81 |
| - --> $DIR/field_reassign_with_default.rs:121:5 |
| 81 | + --> $DIR/field_reassign_with_default.rs:134:5 |
82 | 82 | |
|
83 | 83 | LL | let mut a: C = C::default();
|
84 | 84 | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
0 commit comments