Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/samForComparator.kt
T
2020-11-16 15:50:39 +03:00

11 lines
125 B
Kotlin
Vendored

// FULL_JDK
fun foo(x: Comparator<in CharSequence>) {}
fun main() {
foo { x, y ->
x.length - y.length
}
}