aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t415.scala
blob: 355b6136d1992e4e412136e2188ace43b4d7a28a (plain) (tree)
1
2
3
4
5
6
7
8
9








                       
abstract class A {
  type T <: String;
  def x: T;
}

abstract class B {
  def a: A;
  val y: String  = a.x;
}