mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
8 lines
225 B
Plaintext
8 lines
225 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)
|
|
}
|