Sign in
fuchsia
/
third_party
/
rust
/
8429c9911b68afe9c0cc5804cb15fc22f03d913c
/
.
/
tests
/
ui
/
occurs-check-2.rs
blob: 9289a8e870a18aade0317be844244f6cae7efb3f [
file
] [
log
] [
blame
]
fn
main
()
{
let
f
;
let
g
;
g
=
f
;
//~^ ERROR overflow assigning `Box<_>` to `_`
f
=
Box
::
new
(
g
);
}