aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/types-in-used-names-b/A.scala
blob: 301b546cb225a6bf92e8c26f5031b0ea53d73606 (plain) (blame)
1
2
3
4
5
class A {
  type T <: S
  type S <: Int
  def foo: T = null.asInstanceOf[T]
}