Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
invertIfCondition
/
beforeContinue1.java
blob: 915f73b6637e3a630fd694a7c31a59e5644bfe9d [
file
] [
log
] [
blame
]
// "Invert If Condition" "true"
class
A
{
void
foo
()
{
int
a
=
0
,
b
=
0
;
for
(;;)
{
<
caret
>
if
(
a
==
b
)
continue
;
a
=
b
;
}
}
}