Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/nestedCalls/analyzeUnmappedArguments.kt
T
2021-04-05 12:58:07 +03:00

11 lines
153 B
Kotlin
Vendored

// FIR_IDENTICAL
package c
fun test() {
with (1) l@ {
foo(1, <!NAMED_PARAMETER_NOT_FOUND!>zz<!> = { this@l } )
}
}
fun foo(x: Int) = x