3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
7 lines
126 B
Kotlin
7 lines
126 B
Kotlin
// !specifyLocalVariableTypeByDefault: true
|
|
fun foo() {
|
|
val s: String? = bar()
|
|
if (s != null) {
|
|
zoo(s)
|
|
}
|
|
} |