Files
kotlin-fork/idea/testData/inspectionsLocal/redundantUnitExpression/atLastAfterFunInTry.kt
T
2018-01-30 10:03:36 +03:00

5 lines
92 B
Kotlin
Vendored

fun test(b: Boolean): Unit = try {
fun a() {}
<caret>Unit
} catch (e: Exception) {
}