mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
324 B
Rust
18 lines
324 B
Rust
pub enum T {
|
|
T1(()),
|
|
T2(()),
|
|
}
|
|
|
|
pub enum V {
|
|
V1(isize),
|
|
V2(bool),
|
|
}
|
|
|
|
fn main() {
|
|
match (T::T1(()), V::V2(true)) {
|
|
//~^ ERROR non-exhaustive patterns: `(T::T1(()), V::V2(_))` and `(T::T2(()), V::V1(_))` not covered
|
|
(T::T1(()), V::V1(i)) => (),
|
|
(T::T2(()), V::V2(b)) => (),
|
|
}
|
|
}
|