Sign in
rust
/
rust
/
97600964b5f19f3d7a0ab32e820e4fed1322770e
/
.
/
tests
/
ui
/
type
/
unit-type-basic-usages.rs
blob: c3ee8067f591844c16713e4c647a747f1848e791 [
file
]
//! Checks the basic usage of unit type
//@ run-pass
fn
f
(
u
:
())
{
u
}
pub
fn
main
()
{
let
u1
:
()
=
();
let
mut
_u2
:
()
=
f
(
u1
);
_u2
=
();
()
}