KT-5155 Auto-casts do not work with when

#KT-5155 Fixed
This commit is contained in:
Svetlana Isakova
2014-06-17 15:14:03 +04:00
parent 17c4930404
commit abfc8ed7e8
3 changed files with 30 additions and 15 deletions
@@ -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