Sign in
android
/
platform
/
tools
/
idea
/
9ea67227e8fdcf8ed37e65bb96e32767291d0f4f
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterFlow1.java
blob: 08071695d22ad5b315c8fd7e77b1198d5fd2d968 [
file
]
// "Invert If Condition" "true"
class
A
{
public
void
foo
()
{
<
caret
>
if
(!
c
)
{
return
;
}
a
();
}
}