mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
33 lines
859 B
Rust
33 lines
859 B
Rust
// check-fail
|
|
|
|
#![deny(non_exhaustive_omitted_patterns)]
|
|
//~^ WARNING unknown lint: `non_exhaustive_omitted_patterns`
|
|
#![allow(non_exhaustive_omitted_patterns)]
|
|
//~^ WARNING unknown lint: `non_exhaustive_omitted_patterns`
|
|
|
|
fn main() {
|
|
enum Foo {
|
|
A,
|
|
B,
|
|
C,
|
|
}
|
|
|
|
#[allow(non_exhaustive_omitted_patterns)]
|
|
//~^ WARNING unknown lint: `non_exhaustive_omitted_patterns`
|
|
//~| WARNING unknown lint: `non_exhaustive_omitted_patterns`
|
|
match Foo::A {
|
|
//~^ ERROR non-exhaustive patterns: `Foo::C` not covered
|
|
Foo::A => {}
|
|
Foo::B => {}
|
|
}
|
|
|
|
#[warn(non_exhaustive_omitted_patterns)]
|
|
//~^ WARNING unknown lint: `non_exhaustive_omitted_patterns`
|
|
//~| WARNING unknown lint: `non_exhaustive_omitted_patterns`
|
|
match Foo::A {
|
|
Foo::A => {}
|
|
Foo::B => {}
|
|
_ => {}
|
|
}
|
|
}
|