Sign in
android
/
platform
/
tools
/
idea
/
934b9431b0b827a132df794e307fe5a2b70de00b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterConditionNeq.java
blob: c14778349886194a85879c25b81b532b3ec04cc3 [
file
] [
log
] [
blame
]
// "Invert If Condition" "true"
class
A
{
public
void
foo
()
{
<
caret
>
if
(
c
==
d
)
{
b
();
}
else
{
a
();
}
}
}