Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
beforeFlow4.java
blob: df0632363504f598a414434337ac68cc5fc9ddd3 [
file
]
// "Invert If Condition" "true"
public
class
C
{
public
static
int
main
(
String
[]
args
)
{
<
caret
>
if
(
a
)
return
2
;
foo
();
return
1
;
}
private
static
void
foo
()
{
}
}