Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
suppressed-error.rs
blob: 256ec1713d4c1a182aab12c6e2dda84e58291858 [
file
]
fn
main
()
{
let
(
x
,
y
)
=
();
//~^ ERROR mismatched types
//~| expected unit type `()`
//~| found tuple `(_, _)`
//~| expected `()`, found tuple
return
x
;
}