Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/variables/ifVarIsChanged.kt
T
2015-10-14 20:39:35 +03:00

12 lines
213 B
Kotlin
Vendored

public fun bar(s: String) {
System.out.println("Length of $s is ${s.length}")
}
public fun foo() {
var s: Any = "not null"
if (s is String) {
s = 42
bar(<!TYPE_MISMATCH!>s<!>)
}
}