13 lines
198 B
Kotlin
13 lines
198 B
Kotlin
package codegen.inline.inline24
|
|
|
|
import kotlin.test.*
|
|
|
|
fun foo() = println("foo")
|
|
fun bar() = println("bar")
|
|
|
|
inline fun baz(x: Unit = foo(), y: Unit) {}
|
|
|
|
@Test fun runTest() {
|
|
baz(y = bar())
|
|
}
|