7 lines
138 B
Kotlin
Vendored
7 lines
138 B
Kotlin
Vendored
// "Add '<*, *>'" "true"
|
|
public fun foo(a: Any) {
|
|
when (a) {
|
|
is kotlin.collections.Map<caret> -> {}
|
|
else -> {}
|
|
}
|
|
} |