summaryrefslogtreecommitdiff
path: root/test/files/neg/dep.scala
blob: 83c005b860c4e07e42cde5817981adbc61da7203 (plain) (blame)
1
2
3
4
5
6
object Test {
  abstract class C {
    type t;
  }
  def foo(x: C, y: x.t): Object = null;
}