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