blob: 015487a06aafeab403ccb40da3d5ab38e9c84f6d [file] [log] [blame]
struct Foo;
const INIT: Foo = Foo;
static FOO: Foo = INIT;
fn main() {
let _a = FOO; //~ ERROR: cannot move out of static item
}