8 lines
165 B
Plaintext
8 lines
165 B
Plaintext
class Some
|
|
fun <T> Some.filter(predicate : (T) -> Boolean) = throw UnsupportedOperationException()
|
|
|
|
fun main(args: Array<String>) {
|
|
Some().filter { <caret> }
|
|
}
|
|
|