Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/nestedCalls/analyzeUnmappedArguments.kt
T
Stanislav Erokhin 298a075381 Minor. removed functions which declared in Standard.kt from diagnostic testdata.
Removed declaration for functions: TODO, run, with, apply, let.
2016-01-25 19:13:31 +03:00

10 lines
136 B
Kotlin
Vendored

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