これは、Scala 2.10 の新しい暗黙のクラスの正しい使い方だと思いました。
implicit case class IntOps(i: Int) extends AnyVal {
def twice = i * 2
}
11.twice
どうやらそうではありません:
<console>:13: error: value twice is not a member of Int
11.twice
^
何か不足していますか (Scala 2.10.0-M6)?