rust/tests/ui/pattern/usefulness/tuple-struct-nonexhaustive.rs
2023-01-11 09:32:08 +00:00

10 lines
190 B
Rust

struct Foo(isize, isize);
fn main() {
let x = Foo(1, 2);
match x { //~ ERROR non-exhaustive
Foo(1, b) => println!("{}", b),
Foo(2, b) => println!("{}", b)
}
}