No space between label and lambda in labeled expressions
#KT-22301 Fixed
This commit is contained in:
@@ -3,5 +3,5 @@
|
||||
inline fun Int.bar(f: (Int) -> Unit) { }
|
||||
|
||||
fun test() {
|
||||
1.bar foo@ { if (it == 2) return@<caret>foo }
|
||||
1.bar foo@{ if (it == 2) return@foo }
|
||||
}
|
||||
@@ -3,5 +3,5 @@
|
||||
inline fun Int.bar(f: (Int) -> Unit) { }
|
||||
|
||||
fun test() {
|
||||
1.bar foo@ { 2.bar { if (it == 2) return@<caret>foo } }
|
||||
1.bar foo@{ 2.bar { if (it == 2) return@<caret>foo } }
|
||||
}
|
||||
Reference in New Issue
Block a user