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