aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/import-rewrite/file.scala
blob: e52581e81c6f38b611f89e80fe83ef0b81d31ce8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                              
package file

class File private (val str: String) {
  def name: String = "name"
}

object File {
  def apply(str: String): File = new File(str)
}