8 lines
182 B
Kotlin
Vendored
8 lines
182 B
Kotlin
Vendored
fun <T> Array<T>.filter(predicate : (T) -> Boolean) : java.util.List<T> = throw UnsupportedOperationException()
|
|
|
|
fun main(args: Array<String>) {
|
|
args.fil<caret>
|
|
}
|
|
|
|
// ELEMENT: *
|