]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/field_reassign_with_default.stderr
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / field_reassign_with_default.stderr
CommitLineData
f20569fa
XL
1error: field assignment outside of initializer for an instance created with Default::default()
2 --> $DIR/field_reassign_with_default.rs:48:5
3 |
4LL | a.i = 42;
5 | ^^^^^^^^^
6 |
7 = note: `-D clippy::field-reassign-with-default` implied by `-D warnings`
8note: 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 |
11LL | let mut a: A = Default::default();
12 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
14error: field assignment outside of initializer for an instance created with Default::default()
15 --> $DIR/field_reassign_with_default.rs:88:5
16 |
17LL | a.j = 43;
18 | ^^^^^^^^^
19 |
20note: 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 |
23LL | let mut a: A = Default::default();
24 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25
26error: field assignment outside of initializer for an instance created with Default::default()
27 --> $DIR/field_reassign_with_default.rs:93:5
28 |
29LL | a.i = 42;
30 | ^^^^^^^^^
31 |
32note: 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 |
35LL | let mut a: A = Default::default();
36 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
37
38error: field assignment outside of initializer for an instance created with Default::default()
39 --> $DIR/field_reassign_with_default.rs:99:5
40 |
41LL | a.i = 42;
42 | ^^^^^^^^^
43 |
44note: 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 |
47LL | let mut a = A::default();
48 | ^^^^^^^^^^^^^^^^^^^^^^^^^
49
50error: field assignment outside of initializer for an instance created with Default::default()
51 --> $DIR/field_reassign_with_default.rs:109:5
52 |
53LL | a.i = Default::default();
54 | ^^^^^^^^^^^^^^^^^^^^^^^^^
55 |
56note: 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 |
59LL | let mut a: A = Default::default();
60 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
61
62error: field assignment outside of initializer for an instance created with Default::default()
63 --> $DIR/field_reassign_with_default.rs:113:5
64 |
65LL | a.i = Default::default();
66 | ^^^^^^^^^^^^^^^^^^^^^^^^^
67 |
68note: 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 |
71LL | let mut a: A = Default::default();
72 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
73
74error: field assignment outside of initializer for an instance created with Default::default()
75 --> $DIR/field_reassign_with_default.rs:135:5
76 |
77LL | a.i = vec![1];
78 | ^^^^^^^^^^^^^^
79 |
80note: consider initializing the variable with `C { i: vec![1], ..Default::default() }` and removing relevant reassignments
81 --> $DIR/field_reassign_with_default.rs:134:5
82 |
83LL | let mut a: C = C::default();
84 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
85
86error: aborting due to 7 previous errors
87