Sign in
android
/
platform
/
tools
/
idea
/
934b9431b0b827a132df794e307fe5a2b70de00b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterIDEA18864_2.java
blob: 994fdddac510e9c3795b98132282819242c51b59 [
file
] [
log
] [
blame
]
// "Invert If Condition" "true"
class
A
{
public
static
void
foo
()
{
<
caret
>
if
(
1
+
2
!=
3
)
{
}
else
{
System
.
out
.
println
(
"say"
);
}
System
.
out
.
println
(
"something"
);
}
}