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,9 @@
// "Replace with label label@" "true"
fun run(block: () -> Unit) = block()
fun foo() {
run @label<caret> {
return@label
}
}