rust/tests/ui/exhaustive_items.stderr

47 lines
1.0 KiB
Plaintext
Raw Normal View History

2021-01-21 14:48:30 -06:00
error: enums should not be exhaustive
2021-01-21 15:41:57 -06:00
--> $DIR/exhaustive_items.rs:11:5
2021-01-21 14:48:30 -06:00
|
2021-01-21 15:41:57 -06:00
LL | / pub enum Exhaustive {
LL | | Foo,
LL | | Bar,
LL | | Baz,
LL | | Quux(String),
LL | | }
| |_____^
2021-01-21 14:48:30 -06:00
|
note: the lint level is defined here
2021-01-21 15:41:57 -06:00
--> $DIR/exhaustive_items.rs:3:35
2021-01-21 14:48:30 -06:00
|
2021-01-21 15:41:57 -06:00
LL | #![deny(clippy::exhaustive_enums, clippy::exhaustive_structs)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-01-21 14:48:30 -06:00
help: try adding #[non_exhaustive]
|
2021-01-21 15:41:57 -06:00
LL | #[non_exhaustive]
LL | pub enum Exhaustive {
2021-01-21 15:41:57 -06:00
LL | Foo,
LL | Bar,
LL | Baz,
LL | Quux(String),
2021-01-21 14:48:30 -06:00
...
2021-01-21 15:41:57 -06:00
error: enums should not be exhaustive
--> $DIR/exhaustive_items.rs:46:5
|
LL | / pub struct Exhaustive {
LL | | foo: u8,
LL | | bar: String,
LL | | }
| |_____^
|
help: try adding #[non_exhaustive]
|
LL | #[non_exhaustive]
LL | pub struct Exhaustive {
LL | foo: u8,
LL | bar: String,
LL | }
|
error: aborting due to 2 previous errors
2021-01-21 14:48:30 -06:00