Add quickfix for deprecated labels syntax

This commit is contained in:
Denis Zharkov
2015-05-18 15:49:44 +03:00
parent e98b9ea84e
commit 87be626848
13 changed files with 380 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Replace with label loop@" "true"
fun foo() {
@loop<caret> for (i in 1..100) {
break@loop
}
}