Sign in
android
/
platform
/
tools
/
idea
/
934b9431b0b827a132df794e307fe5a2b70de00b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterFlow4.java
blob: 5773ddeda97bab60176f659eb97ca60942382451 [
file
] [
log
] [
blame
]
// "Invert If Condition" "true"
public
class
C
{
public
static
int
main
(
String
[]
args
)
{
if
(!
a
)
{
foo
();
return
1
;
}
else
{
return
2
;
}
}
private
static
void
foo
()
{
}
}