Sign in
eclipse
/
jdt
/
eclipse.jdt.ui
/
7320e60b7d053d49f62f051e5fb737066ca340bc
/
.
/
org.eclipse.jdt.ui.tests.refactoring
/
resources
/
ExtractTemp
/
cannotExtract
/
A_testFail27.java
blob: 310ac3006fd97d48cb159a1f3e23d6f1730d7e4a [
file
]
// 7, 13 -> 7, 24
package
p
;
class
A
{
public
boolean
fState
=
false
;
public
void
foo
()
{
if
(
this
.
fState
)
{
this
.
fState
=
false
;
}
else
{
this
.
fState
=
this
.
fState
;
}
}
}