Files
kotlin-fork/idea/testData/resolve/partialBodyResolve/IfNotIsErrorVariable.dump
T
2014-11-24 20:11:29 +03:00

8 lines
228 B
Plaintext

Resolve target: value-parameter val p: kotlin.Any
----------------------------------------------
val error = "error"
fun foo(p: Any) {
/* STATEMENT DELETED: if (p !is String) { print(error) } */
println(<caret>p.size)
}