"Remove redundant backticks": Fix false positive for underscore

#KT-28592 Fixed
This commit is contained in:
Toshiaki Kameyama
2018-12-25 10:51:05 +09:00
committed by Mikhail Glukhikh
parent 84222afe2f
commit d00236d366
3 changed files with 14 additions and 1 deletions
@@ -0,0 +1,8 @@
// PROBLEM: none
fun test() {
try {
} catch (_: Throwable) {
<caret>`_`.printStackTrace()
}
}