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.
9 lines
158 B
Rust
9 lines
158 B
Rust
fn main() {
|
|
let (x, y) = ();
|
|
//~^ ERROR mismatched types
|
|
//~| expected unit type `()`
|
|
//~| found tuple `(_, _)`
|
|
//~| expected `()`, found
|
|
return x;
|
|
}
|