Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/arguments/varargOfLambdasWithReceiver.kt
T
2020-09-23 14:05:09 +03:00

10 lines
149 B
Kotlin
Vendored

// ISSUE: KT-41991
fun runLambdas(vararg values: String.() -> Unit) {}
fun test() {
runLambdas({
length
})
}