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,5 +1,5 @@
fun <R> foo(f: () -> R) = f()
fun test() {
foo (bar2@ baz@ { return@baz false })
foo (bar2@ baz@{ return@baz false })
}