Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
suppressed-error.rs
blob: 256ec1713d4c1a182aab12c6e2dda84e58291858 [
file
] [
log
] [
blame
]
fn
main
()
{
let
(
x
,
y
)
=
();
//~^ ERROR mismatched types
//~| expected unit type `()`
//~| found tuple `(_, _)`
//~| expected `()`, found tuple
return
x
;
}