]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/borrowck-bad-nested-calls-move.rs
Ignore tests broken by failing on ICE
[rust.git] / src / test / compile-fail / borrowck-bad-nested-calls-move.rs
1 // Copyright 2012 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 // Test that we detect nested calls that could free pointers evaluated
12 // for earlier arguments.
13
14 fn rewrite(v: &mut ~uint) -> uint {
15     *v = ~22;
16     **v
17 }
18
19 fn add(v: &uint, w: ~uint) -> uint {
20     *v + *w
21 }
22
23 fn implicit() {
24     let mut a = ~1;
25
26     // Note the danger here:
27     //
28     //    the pointer for the first argument has already been
29     //    evaluated, but it gets moved when evaluating the second
30     //    argument!
31     add(
32         a,
33         a); //~ ERROR cannot move
34 }
35
36 fn explicit() {
37     let mut a = ~1;
38     add(
39         &*a,
40         a); //~ ERROR cannot move
41 }
42
43 fn main() {}