about summary refs log tree commit diff
path: root/src/test/ui/recursion/recursion.stderr
blob: 1bef37ad58883be096dcfb53c91bb5cf96276835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: reached the recursion limit while instantiating `test::<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Cons<Nil>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>`
  --> $DIR/recursion.rs:12:1
   |
LL | / fn test<T:Dot> (n:isize, i:isize, first:T, second:T) ->isize { //~ ERROR recursion limit
LL | |   match n {    0 => {first.dot(second)}
LL | |       // FIXME(#4287) Error message should be here. It should be
LL | |       // a type error to instantiate `test` at a type other than T.
LL | |     _ => {test (n-1, i+1, Cons {head:2*i+1, tail:first}, Cons{head:i*i, tail:second})}
LL | |   }
LL | | }
   | |_^

error: aborting due to previous error