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
@@ -26,7 +26,13 @@ fun foo(a: Int): Int {
return b + c + d + e
}
private fun list(b: Int, a: Int, c: Int, d: Int, e: Int): List<Int> {
private fun list(
b: Int,
a: Int,
c: Int,
d: Int,
e: Int
): List<Int> {
var b1 = b
var c1 = c
var d1 = d
@@ -21,7 +21,12 @@ fun foo(a: Int): Int {
return b + c + d
}
private fun triple(b: Int, a: Int, c: Int, d: Int): Triple<Int, Int, Int> {
private fun triple(
b: Int,
a: Int,
c: Int,
d: Int
): Triple<Int, Int, Int> {
var b1 = b
var c1 = c
var d1 = d