]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/moves-based-on-type-access-to-field.rs
657d5ad03e8a88aa2dac04b396f354fe3fa0c263
[rust.git] / src / test / compile-fail / moves-based-on-type-access-to-field.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Tests that if you move from `x.f` or `x[0]`, `x` is inaccessible.
12 // Also tests that we give a more specific error message.
13
14 struct Foo { f: ~str, y: int }
15 fn consume(_s: ~str) {}
16 fn touch<A>(_a: &A) {}
17
18 fn f10() {
19     let x = Foo { f: ~"hi", y: 3 };
20     consume(x.f);
21     touch(&x.y); //~ ERROR use of partially moved value: `x`
22 }
23
24 fn f20() {
25     let x = vec!(~"hi");
26     consume(x.move_iter().next().unwrap());
27     touch(x.get(0)); //~ ERROR use of moved value: `x`
28 }
29
30 fn main() {}