blob: 721c47e019a4d8d42261146e167bc45b48474f7a [file] [log] [blame]
fun test(): String {
val b = A<String>().B<Int, Double>()
val x: String? = b.getAE()
val y: Int? = b.getBT()
val z: Double? = b.getBE()
// This line is needed to ensure that B.getAE's return type is not an error type; if it was, this line would compile with no errors
b.getAE().unresolved()
return "$x$y$z"
}