3c859caf2b
Move j2k/test/tests -> j2k/tests, j2k/test/testData -> j2k/testData
10 lines
165 B
Kotlin
10 lines
165 B
Kotlin
class C {
|
|
fun getString(b: Boolean): String? {
|
|
return if (b) "a" else null
|
|
}
|
|
|
|
fun foo(): Int {
|
|
return getString(true)!!.length()
|
|
}
|
|
}
|