1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
10 lines
233 B
Kotlin
10 lines
233 B
Kotlin
fun box(): String {
|
|
try {
|
|
} catch (e: Exception) {
|
|
inlineFunctionWithDefaultArguments(e)
|
|
}
|
|
return "OK"
|
|
}
|
|
|
|
inline fun inlineFunctionWithDefaultArguments(t: Throwable? = null, bug: Boolean = true) =
|
|
Unit |