Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
issues
/
issue-11771.rs
blob: c69cd1e79e3725f2a3a2bd102a171f37b493e13c [
file
]
fn
main
()
{
let
x
=
();
1
+
x
//~^ ERROR E0277
;
let
x
:
()
=
();
1
+
x
//~^ ERROR E0277
;
}