]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suppressed-error.rs
Auto merge of #56827 - faern:eliminate-recv-timeout-panic, r=KodrAus
[rust.git] / src / test / ui / suppressed-error.rs
1 fn main() {
2     let (x, y) = ();
3 //~^ ERROR mismatched types
4 //~| expected type `()`
5 //~| found type `(_, _)`
6 //~| expected (), found tuple
7     return x;
8 }