rust/tests/ui/exhaustive_enums.fixed

25 lines
266 B
Rust
Raw Normal View History

2021-01-21 14:48:30 -06:00
// run-rustfix
#![deny(clippy::exhaustive_enums)]
#![allow(unused)]
fn main() {
// nop
}
#[non_exhaustive]
enum Exhaustive {
Foo,
Bar,
Baz,
Quux(String),
}
#[non_exhaustive]
enum NonExhaustive {
Foo,
Bar,
Baz,
Quux(String),
}