7 lines
128 B
Kotlin
7 lines
128 B
Kotlin
// "Add '<*>'" "true"
|
|
public fun foo(a: Any) {
|
|
when (a) {
|
|
is java.util.ArrayList<*> -> {}
|
|
else -> {}
|
|
}
|
|
} |