rust/tests/ui/exhaustive_enums.fixed
2021-01-21 13:31:06 -08:00

25 lines
266 B
Rust

// 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),
}