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-07-11 17:00:40 -05:00
|
|
|
trait vec_monad<A> {
|
|
|
|
fn bind<B>(f: fn(A) -> ~[B]);
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<A> vec_monad<A> for ~[A] {
|
2012-06-29 18:26:56 -05:00
|
|
|
fn bind<B>(f: fn(A) -> ~[B]) {
|
2013-02-11 21:26:38 -06:00
|
|
|
let mut r = fail!();
|
2012-09-19 18:55:01 -05:00
|
|
|
for self.each |elt| { r += f(*elt); }
|
2012-06-30 06:23:59 -05:00
|
|
|
//~^ WARNING unreachable expression
|
|
|
|
//~^^ ERROR the type of this value must be known
|
2012-04-07 19:11:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
2013-01-15 18:33:20 -06:00
|
|
|
["hi"].bind(|x| [x] );
|
2013-02-19 01:55:37 -06:00
|
|
|
//~^ ERROR type `[&staticstr * 1]` does not implement any method in scope named `bind`
|
2013-01-15 18:33:20 -06:00
|
|
|
//~^^ ERROR Unconstrained region variable
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|