KT-5155 Auto-casts do not work with when
#KT-5155 Fixed
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
//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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user