This page is no longer maintained — Please continue to the home page at www.scala-lang.org

funny ambiguous error message

1 reply
vpatryshev
Joined: 2009-02-16,
User offline. Last seen 1 year 24 weeks ago.
scala> (1 /: List(2,3)) ((p:(Int,  Int)) => p._1*p._2)
<console>:9: error: type mismatch;
 found   : (Int, Int) => Int
 required: (Int, Int) => Int
              (1 /: List(2,3)) ((p:(Int,  Int)) => p._1*p._2)

It is not a big puzzle, in this specific simple context, but I believe it might make sense for the error message to be more explicit. :)

Thanks,
-Vlad
extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: funny ambiguous error message

On Mon, Oct 17, 2011 at 12:59 AM, Vlad Patryshev wrote:
> scala> (1 /: List(2,3)) ((p:(Int,  Int)) => p._1*p._2)
> :9: error: type mismatch;
>  found   : (Int, Int) => Int
>  required: (Int, Int) => Int
>               (1 /: List(2,3)) ((p:(Int,  Int)) => p._1*p._2)
>
> It is not a big puzzle, in this specific simple context, but I believe it
> might make sense for the error message to be more explicit. :)

It's a bug, and already fixed.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland