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