Files
kotlin-fork/j2k/testData/fileOrElement/function/lineBreaksBetweenParameters.kt
T
Dmitry Gridin 11a3482970 tests: apply official code style
#KT-38632 Fixed
2020-05-07 12:36:44 +00:00

21 lines
258 B
Kotlin
Vendored

internal class C {
fun foo1(p1: Int, p2: Int) {}
fun foo2(
p1: Int,
p2: Int
) {
}
fun foo3(
p1: Int,
p2: Int
) {
}
fun foo4(
p1: Int, p2: Int,
p3: Int, p4: Int
) {
}
}