ac675784c1
Remove empty try-catch blocks in DeadCodeEliminatingMethodTransformer.
10 lines
156 B
Kotlin
Vendored
10 lines
156 B
Kotlin
Vendored
fun box(): String {
|
|
if (false) {
|
|
try {
|
|
null!!
|
|
} catch (e: Exception) {
|
|
throw e
|
|
}
|
|
}
|
|
return "OK"
|
|
} |