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