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

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