2014-01-19 08:10:34 -06:00
|
|
|
// Verifies that static items can't be moved
|
|
|
|
|
2015-08-11 19:27:05 -05:00
|
|
|
struct B;
|
2014-01-19 08:10:34 -06:00
|
|
|
|
|
|
|
struct Foo {
|
2015-01-08 04:54:35 -06:00
|
|
|
foo: isize,
|
2015-08-11 19:27:05 -05:00
|
|
|
b: B,
|
2014-01-19 08:10:34 -06:00
|
|
|
}
|
|
|
|
|
2015-08-11 19:27:05 -05:00
|
|
|
static BAR: Foo = Foo { foo: 5, b: B };
|
2014-01-19 08:10:34 -06:00
|
|
|
|
|
|
|
|
|
|
|
fn test(f: Foo) {
|
|
|
|
let _f = Foo{foo: 4, ..f};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2014-02-18 08:19:44 -06:00
|
|
|
test(BAR); //~ ERROR cannot move out of static item
|
2014-01-19 08:10:34 -06:00
|
|
|
}
|