Sign in
android
/
toolchain
/
rustc
/
d2dbbcd40813d506244f1255bc2c84088a0197e1
/
.
/
src
/
test
/
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
;
}