Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
borrowck
/
issue-17718-static-move.rs
blob: 015487a06aafeab403ccb40da3d5ab38e9c84f6d [
file
]
struct
Foo
;
const
INIT
:
Foo
=
Foo
;
static
FOO
:
Foo
=
INIT
;
fn
main
()
{
let
_a
=
FOO
;
//~ ERROR: cannot move out of static item
}