2014-09-11 05:07:49 +00:00
|
|
|
enum Nil {NilValue}
|
2015-01-08 10:54:35 +00:00
|
|
|
struct Cons<T> {head:isize, tail:T}
|
|
|
|
trait Dot {fn dot(&self, other:Self) -> isize;}
|
2013-02-14 19:47:00 +00:00
|
|
|
impl Dot for Nil {
|
2015-01-08 10:54:35 +00:00
|
|
|
fn dot(&self, _:Nil) -> isize {0}
|
2012-12-27 22:58:45 +00:00
|
|
|
}
|
2013-02-14 19:47:00 +00:00
|
|
|
impl<T:Dot> Dot for Cons<T> {
|
2015-01-08 10:54:35 +00:00
|
|
|
fn dot(&self, other:Cons<T>) -> isize {
|
2012-12-27 22:58:45 +00:00
|
|
|
self.head * other.head + self.tail.dot(other.tail)
|
|
|
|
}
|
|
|
|
}
|
2016-01-11 20:49:30 +00:00
|
|
|
fn test<T:Dot> (n:isize, i:isize, first:T, second:T) ->isize { //~ ERROR recursion limit
|
|
|
|
match n { 0 => {first.dot(second)}
|
2015-02-20 17:25:30 +00:00
|
|
|
// FIXME(#4287) Error message should be here. It should be
|
|
|
|
// a type error to instantiate `test` at a type other than T.
|
2012-12-27 22:58:45 +00:00
|
|
|
_ => {test (n-1, i+1, Cons {head:2*i+1, tail:first}, Cons{head:i*i, tail:second})}
|
|
|
|
}
|
|
|
|
}
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2014-11-06 08:05:53 +00:00
|
|
|
let n = test(1, 0, Nil::NilValue, Nil::NilValue);
|
2013-09-25 05:16:43 +00:00
|
|
|
println!("{}", n);
|
2012-12-27 22:58:45 +00:00
|
|
|
}
|