2015-02-20 19:25:30 +02:00
|
|
|
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
|
2012-12-27 14:58:45 -08:00
|
|
|
// 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.
|
|
|
|
|
2015-01-09 18:27:23 +05:30
|
|
|
//~^^^^^^^^^^ ERROR overflow
|
2015-01-07 15:32:36 -05:00
|
|
|
//
|
2015-02-20 19:25:30 +02:00
|
|
|
// We get an error message at the top of file (dummy span).
|
|
|
|
// This is not helpful, but also kind of annoying to prevent,
|
|
|
|
// so for now just live with it.
|
2015-01-07 15:32:36 -05: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)
|
|
|
|
}
|
|
|
|
}
|
2015-01-08 21:54:35 +11:00
|
|
|
fn test<T:Dot> (n:isize, i:isize, first:T, second:T) ->isize {
|
2014-10-09 17:19:50 -04:00
|
|
|
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
|
|
|
}
|