12

在玩scala的依赖方法类型时,我遇到了与默认方法参数的冲突:

abstract class X {
  type Y
  case class YY(y: Y)
}

object XX extends X {
  type Y = String
}

trait SomeTrait {
  def method(x: X)(y: x.YY, default: Int = 3): Unit
}

object SomeObject extends SomeTrait {
  def method(x: X)(y: x.YY, default: Int): Unit = {}

  method(XX)(XX.YY("abc")) // fails to compile
}

消息是:

[error]  found   : me.alexbool.XX.YY
[error]  required: x$1.YY
[error] Error occurred in an application involving default arguments.
[error]     method(XX)(XX.YY("abc")) // fails to compile

如果我从方法定义和实现中删除具有默认值的参数,则示例编译成功。我究竟做错了什么?它是一个错误吗?

PS 我正在使用 Scala 2.11.4

4

1 回答 1

7

谷歌搜索半小时,我有答案。是的,这是一个错误。https://issues.scala-lang.org/browse/SI-7371

于 2015-01-03T21:20:57.703 回答