aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/as-seen-from-b/A.scala
blob: f4ae0b78d15adacbb42e82300e4058943b0eb4a2 (plain) (blame)
1
2
3
4
5
6
7
abstract class A {
  type T <: S
  type S
  object X {
    def foo: T = null.asInstanceOf[T]
  }
}