Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
expr-block-unique.rs
blob: 0a659cdf558b6f93c135a8c4c2be137eb436707c [
file
] [
log
] [
blame
]
// -*- rust -*-
fn
main
()
{
let
x
=
{
~
100
};
assert
(*
x
==
100
);
}