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