Files
kotlin-fork/compiler/testData/diagnostics/tests/dataFlow/local/kt2835.kt
T
2014-10-01 18:52:52 +04:00

8 lines
213 B
Kotlin

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