Files
kotlin-fork/compiler/testData/diagnostics/tests/labels/kt3920.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
200 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_VARIABLE
//KT-3920 Labeling information is lost when passing through some expressions
fun test() {
run f@{
val x = if (1 > 2) return@f 1 else 2
2
}
}