25 lines
266 B
Rust
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),
|
|
}
|