No space between label and lambda in labeled expressions

#KT-22301 Fixed
This commit is contained in:
Dmitry Jemerov
2018-02-04 11:08:42 +01:00
parent 8f9b818e43
commit 5bb195df9b
11 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ fun test1() {
}
fun test2() {
listOf(1).forEach lit@ {
listOf(1).forEach lit@{
if (it == 0) return@lit
print(it)
}