11 lines
125 B
Kotlin
Vendored
11 lines
125 B
Kotlin
Vendored
// FULL_JDK
|
|
|
|
fun foo(x: Comparator<in CharSequence>) {}
|
|
|
|
|
|
fun main() {
|
|
foo { x, y ->
|
|
x.length - y.length
|
|
}
|
|
}
|