summaryrefslogtreecommitdiff
path: root/test/files/presentation/t8085/src/nodescala/package.scala
blob: 26fb9f08e4e8644998b911f33deeef836efd85bc (plain) (blame)
1
2
3
4
5
6
7
import scala.Some // <-- if you move the import *inside* the package object, then it all works fine!!

package object nodescala {
  implicit class StringOps(val f: String) {
    def rich = 0
  }
}