tests: apply official code style
#KT-38632 Fixed
This commit is contained in:
+5
-2
@@ -13,5 +13,8 @@ fun foo(n: Int): Int {
|
||||
return i(n, Int::bar1, Int::bar2)
|
||||
}
|
||||
|
||||
private fun i(n: Int, bar1: Int.(m: Int) -> Int, bar2: Int.(m: Int) -> Int) =
|
||||
n.bar1(n + 1).bar2(n + 2)
|
||||
private fun i(
|
||||
n: Int,
|
||||
bar1: Int.(m: Int) -> Int,
|
||||
bar2: Int.(m: Int) -> Int
|
||||
) = n.bar1(n + 1).bar2(n + 2)
|
||||
Reference in New Issue
Block a user