]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suppressed-error.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / src / test / ui / suppressed-error.rs
1 fn main() {
2     let (x, y) = ();
3 //~^ ERROR mismatched types
4 //~| expected unit type `()`
5 //~| found tuple `(_, _)`
6 //~| expected `()`, found tuple
7     return x;
8 }