98c54f39bb
Include kt* files into formatter test generation, to test scripting formatting
11 lines
94 B
Kotlin
Vendored
11 lines
94 B
Kotlin
Vendored
val x: Int
|
|
|
|
if (true) {
|
|
fun foo(y: Int) = y + 20
|
|
x = foo(9)
|
|
}
|
|
|
|
x
|
|
|
|
// expected: rv: 29
|