Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
afterElse1.java
blob: 4448c79759a952d3d2a1f526cbc5ee60129e4198 [
file
] [
log
] [
blame
]
// "Invert If Condition" "true"
class
A
{
public
void
foo
()
{
if
(<
caret
>!
c
)
{
b
();
}
else
{
a
();
}
}
}