summaryrefslogtreecommitdiff
path: root/test/files/pos/Z.scala
blob: c1367e46b9b5a1dda01baec82ca3df4f1f181976 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
trait X {
  val elem: Int = 1
}

object test {

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

}