9 lines
212 B
Kotlin
Vendored
9 lines
212 B
Kotlin
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.AddStarProjectionsFix" "false"
|
|
// ERROR: 2 type arguments expected
|
|
public fun foo(a: Any) {
|
|
when (a) {
|
|
is <caret>Map<Int> -> {}
|
|
else -> {}
|
|
}
|
|
}
|