Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt439.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

6 lines
164 B
Kotlin
Vendored

// KT-439 Support labeled function literals in call arguments
fun main1(<!UNUSED_PARAMETER!>args<!> : Array<String>) {
run l@{ 1 } // should not be an error
}