Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/local/kt2835.kt
T
2013-12-11 19:53:50 +04:00

8 lines
212 B
Kotlin

open class X(val s: String)
fun f(a: String?) {
if (a != null) {
object : X(<!DEBUG_INFO_AUTOCAST!>a<!>) { // Type mismatch: inferred type is jet.String? but jet.String was expected
}
}
}