Files
kotlin/idea/testData/quickfix/migration/obsoleteLabelSyntax/lambda.kt.after
2018-02-09 10:49:01 +01:00

10 lines
134 B
Plaintext
Vendored

// "Replace with label label@" "true"
fun run(block: () -> Unit) = block()
fun foo() {
run label@{
return@label
}
}