Fix spaces in labeled expression (KT-14131)

https://github.com/JetBrains/kotlin/pull/978

(cherry picked from commit fdd5ba7)
This commit is contained in:
Dmitry Neverov
2016-10-17 22:49:06 +03:00
committed by Nikolay Krasko
parent bdecb661e3
commit 3cc3ad2b9e
5 changed files with 90 additions and 1 deletions
@@ -1,6 +1,6 @@
// IS_APPLICABLE: true
fun foo() {
bar(l@{ it * 3 })
bar(l@ { it * 3 })
}
fun bar(b: (Int) -> Int) {