aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t201.scala
blob: b0c6b8da432ae8239d5257dcd2017901eea6724a (plain) (blame)
1
2
3
4
5
6
7
class C[a] { def f: a = f; }
class D[b] { class E extends C[b]; }
object Test {
  val d = new D[Int];
  def e = new d.E;
  e.f;
}