KT-14357 Run RedundantCoercionToUnitTransformer before DeadCodeEliminatingMethodTransformer.
Remove empty try-catch blocks in DeadCodeEliminatingMethodTransformer.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
fun test() {
|
||||
if (false) {
|
||||
try {
|
||||
println("Hello Kotlin")
|
||||
} catch (e: Exception) {
|
||||
e.printStackTrace()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 0 INVOKE
|
||||
Reference in New Issue
Block a user