b70c52e41f
Also, when function has expression body, use expression instead of function declaration to mark return statement.
8 lines
126 B
Kotlin
Vendored
8 lines
126 B
Kotlin
Vendored
fun box(x: Int, y: Int): Int {
|
|
fun foo(
|
|
z: Int) =
|
|
x + z
|
|
return foo(y)
|
|
}
|
|
|
|
// LINES: 2 4 2 5 |