b71061eb5c
#KT-3943 Fixed
10 lines
167 B
Kotlin
10 lines
167 B
Kotlin
class C() {
|
|
fun getString(b: Boolean): String? {
|
|
return if (b) "a" else null
|
|
}
|
|
|
|
fun foo(): Int {
|
|
return getString(true)!!.length()
|
|
}
|
|
}
|