Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt14839.kt
T
2018-06-19 17:09:31 +03:00

10 lines
233 B
Kotlin
Vendored

fun box(): String {
try {
} catch (e: Exception) {
inlineFunctionWithDefaultArguments(e)
}
return "OK"
}
inline fun inlineFunctionWithDefaultArguments(t: Throwable? = null, bug: Boolean = true) =
Unit