Skip to content

Commit

Permalink
test(spgroup#31): revert changes in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
barbosamaatheus committed Dec 22, 2020
1 parent 75957e8 commit 332abb1
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@ public class OverridingAssignmentClassFieldConflictInterProceduralSample {

public void m() {
x = 0; // LEFT
x = foo() + bar(); // RIGHT
foo(); // RIGHT
}

private int foo() {
return 1;
private void foo() {
x = 1;
}

private int bar() {
return 1;
}

}

0 comments on commit 332abb1

Please sign in to comment.