Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-11771.rs
blob: c69cd1e79e3725f2a3a2bd102a171f37b493e13c [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
x
=
();
1
+
x
//~^ ERROR E0277
;
let
x
:
()
=
();
1
+
x
//~^ ERROR E0277
;
}