Skip to content

Commit d15649f

Browse files
committed
Fix Test
1 parent 12c15cc commit d15649f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

liquidjava-example/src/main/java/testSuite/classes/conflicting_ghost_names_correct/StackRefinements.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public interface StackRefinements<E> {
1111
public void Stack();
1212

1313
@StateRefinement(to="size(this) == size(old(this)) + 1")
14-
public boolean push(E elem);
14+
public E push(E elem);
1515

1616
@StateRefinement(from="size(this) > 0", to="size(this) == size(old(this)) - 1")
1717
public E pop();

0 commit comments

Comments
 (0)