Files
2020-06-19 15:53:00 +03:00

8 lines
114 B
Kotlin
Vendored

// !DUMP_CFG
fun foo(): Int = 1
fun test(x: Any, y: String = x as String, z: Int = run { foo() }) {
foo()
}