我有这个小斯卡拉示例:
object Test {
def add(x: Int, y: Int) = {
val z = x - y
x match {
case 0 => 0 - y
case 1 => 1 - y
case _ => x - y
}
x + y
}
def main(args: Array[String]) {
println(add(5, 6))
}
}
我觉得scala应该警告'z'和'x match ...'未被使用。我没有注意到任何编译器选项可以打开更多警告。我正在使用 scala 2.10.1。
想法?谢谢!