Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/generic4.kt
T
Toshiaki Kameyama 7ea1700b78 Convert lambda to reference: support generic function call
#KT-14578 Fixed
#KT-14395 Fixed
2020-06-26 20:30:39 +03:00

4 lines
86 B
Kotlin
Vendored

// WITH_RUNTIME
fun test() {
listOf(listOf(1)).filter <caret>{ it.isNotEmpty() }
}