2014-02-18 08:19:44 -06:00
|
|
|
// Ensure that moves out of static items is forbidden
|
|
|
|
|
|
|
|
struct Foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
foo: isize,
|
2014-02-18 08:19:44 -06:00
|
|
|
}
|
|
|
|
|
2015-08-11 19:27:05 -05:00
|
|
|
static BAR: Foo = Foo { foo: 5 };
|
2014-02-18 08:19:44 -06:00
|
|
|
|
|
|
|
|
|
|
|
fn test(f: Foo) {
|
|
|
|
let _f = Foo{foo: 4, ..f};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-05-05 06:02:32 -05:00
|
|
|
test(BAR); //~ ERROR cannot move out of static item `BAR` [E0507]
|
2014-02-18 08:19:44 -06:00
|
|
|
}
|