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