tests: apply official code style

#KT-38632 Fixed
This commit is contained in:
Dmitry Gridin
2020-04-28 15:51:57 +07:00
parent d8f9643650
commit 11a3482970
406 changed files with 1785 additions and 1525 deletions
@@ -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)