Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantBackticks/underscore.kt
T
2018-12-25 10:37:18 +03:00

8 lines
114 B
Kotlin
Vendored

// PROBLEM: none
fun test() {
try {
} catch (_: Throwable) {
<caret>`_`.printStackTrace()
}
}