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









                                  
trait X {
  val elem: Int = 1
}

module test {

  def g(x: X) = x.elem;
  def f(x: Object) = x.toString();

}