mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
62ba3e70a1
The previous output was unintuitive to users.
9 lines
228 B
Rust
9 lines
228 B
Rust
fn main() {
|
|
match None {
|
|
Err(_) => ()
|
|
//~^ ERROR mismatched types
|
|
//~| expected enum `Option<_>`
|
|
//~| found enum `Result<_, _>`
|
|
//~| expected `Option<_>`, found `Result<_, _>`
|
|
}
|
|
}
|