abfc8ed7e8
#KT-5155 Fixed
15 lines
201 B
Kotlin
15 lines
201 B
Kotlin
//KT-5155 Auto-casts do not work with when
|
|
|
|
fun foo(s: String?) {
|
|
when {
|
|
s == null -> 1
|
|
<!DEBUG_INFO_AUTOCAST!>s<!>.foo() -> 2
|
|
else -> 3
|
|
}
|
|
}
|
|
|
|
fun String.foo() = true
|
|
|
|
|
|
|