blob: 7404e900564869805654426cc6312597bc906eec [file] [log] [blame]
fun box(): String {
try {
} catch (e: Exception) {
inlineFunctionWithDefaultArguments(e)
}
return "OK"
}
inline fun inlineFunctionWithDefaultArguments(t: Throwable? = null, bug: Boolean = true) =
Unit