Files
kotlin/idea/testData/quickfix/migration/obsoleteLabelSyntax/loop.kt.after
2015-05-20 09:24:57 +03:00

8 lines
107 B
Plaintext
Vendored

// "Replace with label loop@" "true"
fun foo() {
loop@ for (i in 1..100) {
break@loop
}
}