New setting and test: space before lambda arrow

#KT-3932 fixed
This commit is contained in:
sayon
2013-08-27 16:22:20 +04:00
parent 523a5bf6a9
commit a0500f56d2
7 changed files with 20 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
val f: (Int, Int, Int) -> Int = { x, y, z -> x + y + z }
// SET_FALSE: SPACE_BEFORE_LAMBDA_ARROW
@@ -0,0 +1,3 @@
val f: (Int, Int, Int) -> Int = { x, y, z-> x + y + z }
// SET_FALSE: SPACE_BEFORE_LAMBDA_ARROW
@@ -0,0 +1,3 @@
val f: (Int, Int, Int) -> Int = { x, y, z -> x + y + z }
// SET_FALSE: SPACE_BEFORE_LAMBDA_ARROW