mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
62ba3e70a1
The previous output was unintuitive to users.
11 lines
262 B
Rust
11 lines
262 B
Rust
// Regression test for issue #4968
|
|
|
|
const A: (isize,isize) = (4,2);
|
|
fn main() {
|
|
match 42 { A => () }
|
|
//~^ ERROR mismatched types
|
|
//~| expected type `{integer}`
|
|
//~| found tuple `(isize, isize)`
|
|
//~| expected integer, found `(isize, isize)`
|
|
}
|