98c54f39bb
Include kt* files into formatter test generation, to test scripting formatting
8 lines
66 B
Kotlin
8 lines
66 B
Kotlin
val x = 12
|
|
|
|
fun foo(y: Int) = x + y
|
|
|
|
foo(33)
|
|
|
|
// expected: rv: 45
|