aboutsummaryrefslogtreecommitdiff
path: root/tests/pickling/i982.scala
blob: 838b250d9a5662d9f561bcccc247afc5bfd44e8d (plain) (blame)
1
2
3
4
5
6
7
8
trait Z {
  type Q
  def test: Q
}
class X(val x: Z)
class Y(x: Z) extends X(x) {
  x.test
}