Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
simplifyNegatedBinaryExpression
/
notEquals.kt
blob: 64795ce61c56cb298094648bb2b275514daee525 [
file
] [
log
] [
blame
]
// INTENTION_TEXT: Simplify negated '!=' expression to '=='
fun test
(
n
:
Int
)
{
<caret>
!(
0
!=
1
)
}