Smaller range for SimplifyNegatedBinaryExpressionIntention

This commit is contained in:
Valentin Kipyatkov
2015-05-12 15:02:02 +03:00
parent fc3609d403
commit 9a97818b82
12 changed files with 18 additions and 13 deletions
@@ -1,4 +1,4 @@
// INTENTION_TEXT: Simplify negated '!is' expression to 'is'
fun test(n: Int) {
!(0<caret> !is Int)
<caret>!(0 !is Int)
}