2014-09-11 17:07:49 +12:00
|
|
|
enum Nil {NilValue}
|
2015-01-08 21:54:35 +11:00
|
|
|
struct Cons<T> {head:isize, tail:T}
|
|
|
|
trait Dot {fn dot(&self, other:Self) -> isize;}
|
2013-02-14 11:47:00 -08:00
|
|
|
impl Dot for Nil {
|
2015-01-08 21:54:35 +11:00
|
|
|
fn dot(&self, _:Nil) -> isize {0}
|
2012-12-27 14:58:45 -08:00
|
|
|
}
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<T:Dot> Dot for Cons<T> {
|
2015-01-08 21:54:35 +11:00
|
|
|
fn dot(&self, other:Cons<T>) -> isize {
|
2012-12-27 14:58:45 -08:00
|
|
|
self.head * other.head + self.tail.dot(other.tail)
|
|
|
|
}
|
|
|
|
}
|
2016-01-11 15:49:30 -05: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 19:25:30 +02: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 14:58:45 -08:00
|
|
|
_ => {test (n-1, i+1, Cons {head:2*i+1, tail:first}, Cons{head:i*i, tail:second})}
|
|
|
|
}
|
|
|
|
}
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2014-11-06 00:05:53 -08:00
|
|
|
let n = test(1, 0, Nil::NilValue, Nil::NilValue);
|
2013-09-24 22:16:43 -07:00
|
|
|
println!("{}", n);
|
2012-12-27 14:58:45 -08:00
|
|
|
}
|