2020-05-11 18:23:47 +00:00
|
|
|
error: this seems like a manual implementation of the non-exhaustive pattern
|
2022-05-05 14:12:52 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:5:5
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | struct S {
|
|
|
|
| ^-------
|
|
|
|
| |
|
|
|
|
| _____help: add the attribute: `#[non_exhaustive] struct S`
|
|
|
|
| |
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-05-11 18:23:47 +00:00
|
|
|
LL | | pub a: i32,
|
|
|
|
LL | | pub b: i32,
|
|
|
|
LL | | _c: (),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: remove this field
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:9:9
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | _c: (),
|
|
|
|
| ^^^^^^
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::manual-non-exhaustive` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::manual_non_exhaustive)]`
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
error: this seems like a manual implementation of the non-exhaustive pattern
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:14:5
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | / struct Sp {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2020-05-11 18:23:47 +00:00
|
|
|
LL | | pub a: i32,
|
|
|
|
LL | | pub b: i32,
|
|
|
|
LL | | _c: (),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: remove this field
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:18:9
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | _c: (),
|
|
|
|
| ^^^^^^
|
|
|
|
|
2023-11-20 13:09:02 +00:00
|
|
|
error: this seems like a manual implementation of the non-exhaustive pattern
|
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:29:5
|
|
|
|
|
|
|
|
|
LL | struct NoUnderscore {
|
|
|
|
| ^------------------
|
|
|
|
| |
|
|
|
|
| _____help: add the attribute: `#[non_exhaustive] struct NoUnderscore`
|
|
|
|
| |
|
|
|
|
LL | | pub a: i32,
|
|
|
|
LL | | pub b: i32,
|
|
|
|
LL | | c: (),
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
help: remove this field
|
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:32:9
|
|
|
|
|
|
|
|
|
LL | c: (),
|
|
|
|
| ^^^^^
|
|
|
|
|
2020-05-11 18:23:47 +00:00
|
|
|
error: this seems like a manual implementation of the non-exhaustive pattern
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:56:5
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | struct T(pub i32, pub i32, ());
|
|
|
|
| --------^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| help: add the attribute: `#[non_exhaustive] struct T`
|
|
|
|
|
|
|
|
|
help: remove this field
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:56:32
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | struct T(pub i32, pub i32, ());
|
|
|
|
| ^^
|
|
|
|
|
|
|
|
error: this seems like a manual implementation of the non-exhaustive pattern
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:61:5
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | struct Tp(pub i32, pub i32, ());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: remove this field
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/manual_non_exhaustive_struct.rs:61:33
|
2020-05-11 18:23:47 +00:00
|
|
|
|
|
|
|
|
LL | struct Tp(pub i32, pub i32, ());
|
|
|
|
| ^^
|
|
|
|
|
2023-11-20 13:09:02 +00:00
|
|
|
error: aborting due to 5 previous errors
|
2020-05-11 18:23:47 +00:00
|
|
|
|