4477a96ca7
(to record corresponding call for later simplification in control flow) Generate code for unmapped arguments in control flow
6 lines
70 B
Kotlin
Vendored
6 lines
70 B
Kotlin
Vendored
fun foo(a: Int, b: Int) = a + b
|
|
|
|
fun bar(i: Int) {
|
|
foo(1, 1, i)
|
|
}
|