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