2012-12-10 19:32:48 -06:00
|
|
|
// 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.
|
|
|
|
|
2012-01-04 16:16:41 -06:00
|
|
|
|
|
|
|
fn compute1() -> float {
|
2012-06-29 18:26:56 -05:00
|
|
|
let v = ~[0f, 1f, 2f, 3f];
|
2012-01-04 16:16:41 -06:00
|
|
|
|
2012-09-28 00:20:47 -05:00
|
|
|
do vec::foldl(0f, v) |x, y| { x + *y } - 10f
|
2012-07-03 19:30:25 -05:00
|
|
|
//~^ ERROR mismatched types: expected `()`
|
2012-01-04 16:16:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = compute1();
|
2013-03-08 14:39:42 -06:00
|
|
|
debug!(x);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!((x == -4f));
|
2012-01-04 16:16:41 -06:00
|
|
|
}
|