blob: 69c9c86f1d4ecd6d5a443c0336a8b7dcfeee2f90 [file]
//KT-5155 Auto-casts do not work with when
fun foo(s: String?) {
when {
s == null -> 1
s.foo() -> 2
else -> 3
}
}
fun String.foo() = true