aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg-with-implicits/t6227.scala
blob: 46416839d1599f403eaa499bd3fb5b232fa773fe (plain) (blame)
1
2
3
4
5
6
object Test {
  implicit case class IntOps( i: Int ) {
    def twice = i * 2
  }
}