rust/tests/ui/borrowck/issue-17718-static-move.rs

8 lines
134 B
Rust

struct Foo;
const INIT: Foo = Foo;
static FOO: Foo = INIT;
fn main() {
let _a = FOO; //~ ERROR: cannot move out of static item
}