Unused unary operator: highlight whole expression in yellow

#KT-37156 Fixed
This commit is contained in:
Toshiaki Kameyama
2020-03-02 19:14:54 +09:00
committed by Yan Zhulanow
parent 43b106fc72
commit 7abd0831a1
2 changed files with 2 additions and 10 deletions
@@ -1,6 +1,6 @@
// "Remove unused unary operator" "true"
fun test(foo: Int?): Int {
val a = 1 + 2
<caret>- 3
- 3<caret>
return a
}