rust/src/test/run-pass/non-boolean-pure-fns.rs

35 lines
1.0 KiB
Rust
Raw Normal View History

// xfail-fast
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
extern mod std;
2011-08-24 19:24:58 -05:00
2012-09-05 14:32:05 -05:00
use std::list::*;
2011-08-24 19:24:58 -05:00
pure fn pure_length_go<T: Copy>(ls: @List<T>, acc: uint) -> uint {
2012-09-04 16:36:12 -05:00
match *ls { Nil => { acc } Cons(_, tl) => { pure_length_go(tl, acc + 1u) } }
2011-08-24 19:24:58 -05:00
}
pure fn pure_length<T: Copy>(ls: @List<T>) -> uint { pure_length_go(ls, 0u) }
2011-08-24 19:24:58 -05:00
pure fn nonempty_list<T: Copy>(ls: @List<T>) -> bool { pure_length(ls) > 0u }
2011-08-24 19:24:58 -05:00
fn safe_head<T: Copy>(ls: @List<T>) -> T {
assert !is_empty(ls);
2012-08-01 19:30:05 -05:00
return head(ls);
}
2011-08-24 19:24:58 -05:00
pub fn main() {
2012-09-04 16:12:14 -05:00
let mylist = @Cons(@1u, @Nil);
assert (nonempty_list(mylist));
2011-09-02 17:34:58 -05:00
assert (*safe_head(mylist) == 1u);
}