Sign in
fuchsia
/
third_party
/
rust
/
f8ebe8d783e20c44508fab32b708f1b9d9a4bf13
/
.
/
tests
/
ui
/
consts
/
const_let_assign.rs
blob: 73580c419c072a836263b8a946c96304cf693e20 [
file
] [
log
] [
blame
]
//@ check-pass
struct
S
(
i32
);
const
A
:
()
=
{
let
mut
s
=
S
(
0
);
s
.
0
=
1
;
};
fn
main
()
{}