2019-12-14 04:28:32 +01:00
|
|
|
//@ build-fail
|
2020-02-10 22:31:19 +00:00
|
|
|
//@ compile-flags:-C overflow-checks=off
|
2020-09-16 03:45:58 +01:00
|
|
|
//@ normalize-stderr-test: ".nll/" -> "/"
|
2019-12-14 04:28:32 +01:00
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
2020-06-21 22:32:35 -04:00
|
|
|
fn test<T:Dot> (n:isize, i:isize, first:T, second:T) ->isize {
|
2016-01-11 15:49:30 -05:00
|
|
|
match n { 0 => {first.dot(second)}
|
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})}
|
2020-06-21 22:32:35 -04:00
|
|
|
//~^ ERROR recursion limit
|
2012-12-27 14:58:45 -08:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|