summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/manual_non_exhaustive_struct.stderr
blob: d0bed8e11211aafd6173edec4a5c4ce37e414beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
error: this seems like a manual implementation of the non-exhaustive pattern
  --> $DIR/manual_non_exhaustive_struct.rs:5:5
   |
LL |       struct S {
   |       ^-------
   |       |
   |  _____help: add the attribute: `#[non_exhaustive] struct S`
   | |
LL | |         pub a: i32,
LL | |         pub b: i32,
LL | |         _c: (),
LL | |     }
   | |_____^
   |
help: remove this field
  --> $DIR/manual_non_exhaustive_struct.rs:8:9
   |
LL |         _c: (),
   |         ^^^^^^
   = note: `-D clippy::manual-non-exhaustive` implied by `-D warnings`

error: this seems like a manual implementation of the non-exhaustive pattern
  --> $DIR/manual_non_exhaustive_struct.rs:13:5
   |
LL | /     struct Sp {
LL | |         pub a: i32,
LL | |         pub b: i32,
LL | |         _c: (),
LL | |     }
   | |_____^
   |
help: remove this field
  --> $DIR/manual_non_exhaustive_struct.rs:16:9
   |
LL |         _c: (),
   |         ^^^^^^

error: this seems like a manual implementation of the non-exhaustive pattern
  --> $DIR/manual_non_exhaustive_struct.rs:54:5
   |
LL |     struct T(pub i32, pub i32, ());
   |     --------^^^^^^^^^^^^^^^^^^^^^^^
   |     |
   |     help: add the attribute: `#[non_exhaustive] struct T`
   |
help: remove this field
  --> $DIR/manual_non_exhaustive_struct.rs:54:32
   |
LL |     struct T(pub i32, pub i32, ());
   |                                ^^

error: this seems like a manual implementation of the non-exhaustive pattern
  --> $DIR/manual_non_exhaustive_struct.rs:58:5
   |
LL |     struct Tp(pub i32, pub i32, ());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: remove this field
  --> $DIR/manual_non_exhaustive_struct.rs:58:33
   |
LL |     struct Tp(pub i32, pub i32, ());
   |                                 ^^

error: aborting due to 4 previous errors