rust/tests/ui/exhaustive_items.rs

71 lines
1.1 KiB
Rust
Raw Normal View History

2021-01-21 12:48:30 -08:00
// run-rustfix
2021-01-21 13:41:57 -08:00
#![deny(clippy::exhaustive_enums, clippy::exhaustive_structs)]
2021-01-21 12:48:30 -08:00
#![allow(unused)]
fn main() {
// nop
}
2021-01-21 13:41:57 -08:00
pub mod enums {
pub enum Exhaustive {
Foo,
Bar,
Baz,
Quux(String),
}
2021-01-21 12:48:30 -08:00
2021-01-21 13:41:57 -08:00
// no warning, already non_exhaustive
#[non_exhaustive]
pub enum NonExhaustive {
Foo,
Bar,
Baz,
Quux(String),
}
// no warning, private
enum ExhaustivePrivate {
Foo,
Bar,
Baz,
Quux(String),
}
2021-01-21 13:41:57 -08:00
// no warning, private
#[non_exhaustive]
enum NonExhaustivePrivate {
Foo,
Bar,
Baz,
Quux(String),
}
}
2021-01-21 13:41:57 -08:00
pub mod structs {
pub struct Exhaustive {
foo: u8,
bar: String,
}
// no warning, already non_exhaustive
#[non_exhaustive]
pub struct NonExhaustive {
foo: u8,
bar: String,
}
// no warning, private
struct ExhaustivePrivate {
foo: u8,
bar: String,
}
// no warning, private
#[non_exhaustive]
struct NonExhaustivePrivate {
foo: u8,
bar: String,
}
2021-01-21 12:48:30 -08:00
}