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

2.8.0.head : multiple overloaded alternatives

1 reply
richard emberson
Joined: 2010-03-22,
User offline. Last seen 42 years 45 weeks ago.

Should this be an error condition?

In file Test.scala

class MultiOverload {
def get(name1: String = "One", name2: String = "Two"): String = {
"hi"
}
def get(i: Int, name1: String = "One", name2: String = "Two"): String = {
"hi"
}
}

scalac Test.scala
Test.scala:3: error: in class MultiOverload, multiple overloaded
alternatives of method get define default arguments.
class MultiOverload {
^
one error found

Richard

Mark Harrah
Joined: 2008-12-18,
User offline. Last seen 35 weeks 3 days ago.
Re: 2.8.0.head : multiple overloaded alternatives

Yes. From section 3.1 of the SID[1] (also in section 5.1.3 of the spec [2]):

If there are multiple overloaded alternatives of a method, at most one is allowed to specify default arguments.

-Mark

[1] http://www.scala-lang.org/sid/1
[2] http://www.scala-lang.org/archives/downloads/distrib/files/nightly/pdfs/...

On Monday 29 March 2010, richard emberson wrote:
> Should this be an error condition?
>
> In file Test.scala
>
> class MultiOverload {
> def get(name1: String = "One", name2: String = "Two"): String = {
> "hi"
> }
> def get(i: Int, name1: String = "One", name2: String = "Two"): String = {
> "hi"
> }
> }
>
>
> scalac Test.scala
> Test.scala:3: error: in class MultiOverload, multiple overloaded
> alternatives of method get define default arguments.
> class MultiOverload {
> ^
> one error found
>
>
> Richard
>

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