0b647ac358
Split testData into 'classes' and 'expressions'.
13 lines
249 B
Kotlin
Vendored
13 lines
249 B
Kotlin
Vendored
fun foo(a: Int, b: Int) {}
|
|
|
|
fun noReorder1() = 1
|
|
fun noReorder2() = 2
|
|
|
|
fun reordered1() = 1
|
|
fun reordered2() = 2
|
|
|
|
fun test() {
|
|
foo(a = noReorder1(), b = noReorder2())
|
|
foo(b = reordered1(), a = reordered2())
|
|
foo(b = 1, a = reordered2())
|
|
} |