Files
kotlin-fork/compiler/testData/cli/jvm/firDfa.kt
T
2022-05-01 16:40:04 +00:00

6 lines
70 B
Kotlin
Vendored

fun foo(x: String?) {
if (x != null) {
x!!.length
}
}