blob: 310ac3006fd97d48cb159a1f3e23d6f1730d7e4a [file] [log] [blame]
// 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;
}
}
}