summaryrefslogtreecommitdiff
path: root/test/files/pos/Z.scala
blob: 6a8e97ed1a74058ad367f22574fb61897ce66d1d (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: AnyRef) = x.toString();

}