mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
62ba3e70a1
The previous output was unintuitive to users.
15 lines
283 B
Rust
15 lines
283 B
Rust
enum A { B, C }
|
|
|
|
mod foo { pub fn bar() {} }
|
|
|
|
fn main() {
|
|
match (true, false) {
|
|
A::B => (),
|
|
//~^ ERROR mismatched types
|
|
//~| expected `(bool, bool)`, found `A`
|
|
//~| expected tuple `(bool, bool)`
|
|
//~| found enum `A`
|
|
_ => ()
|
|
}
|
|
}
|