这是怎么回事?
import Numeric.Implicits._
def myAdd[T: Numeric](x: T, y: T) = x + y // Works
myAdd(1,2)
def myInc[T: Numeric](x: T) = x + 1 // Fails at x: could not find implicit value for parameter num: scala.math.Numeric[Any]
myInc(9)
斯卡拉 2.10
与 x+1 相关 --> Numeric+Int?