]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/regions-creating-enums.rs
fix cfail tests
[rust.git] / src / test / compile-fail / regions-creating-enums.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 enum ast<'a> {
12     num(uint),
13     add(&'a ast<'a>, &'a ast<'a>)
14 }
15
16 fn build() {
17     let x = ast::num(3u);
18     let y = ast::num(4u);
19     let z = ast::add(&x, &y);
20     compute(&z);
21 }
22
23 fn compute(x: &ast) -> uint {
24     match *x {
25       ast::num(x) => { x }
26       ast::add(x, y) => { compute(x) + compute(y) }
27     }
28 }
29
30 fn map_nums<'a,'b, F>(x: &ast, f: &mut F) -> &'a ast<'b> where F: FnMut(uint) -> uint {
31     match *x {
32       ast::num(x) => {
33         return &ast::num((*f)(x)); //~ ERROR borrowed value does not live long enough
34       }
35       ast::add(x, y) => {
36         let m_x = map_nums(x, f);
37         let m_y = map_nums(y, f);
38         return &ast::add(m_x, m_y);  //~ ERROR borrowed value does not live long enough
39       }
40     }
41 }
42
43 fn main() {}