b70c52e41f
Also, when function has expression body, use expression instead of function declaration to mark return statement.
7 lines
64 B
Kotlin
Vendored
7 lines
64 B
Kotlin
Vendored
fun box() =
|
|
foo()
|
|
|
|
fun foo() =
|
|
23
|
|
|
|
// LINES: 2 5 |