summaryrefslogblamecommitdiff
path: root/test/files/pos/t6335.scala
blob: a39c4f27f512c56df6065fb4cec5e36a98f9ef0e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                
object E {
  def X = 3
  implicit class X(val i: Int) {
    def xx = i
  }
}

object Test {
	import E._
	0.xx
}