Skip to content

Commit

Permalink
Slightly simplify test (#611)
Browse files Browse the repository at this point in the history
This makes the test pass for all settings, since it removes non-linear arithmetic.
  • Loading branch information
schuessf committed Feb 23, 2023
1 parent 8f564c6 commit d19ecf3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@

int main() {
int i = 5;
int x = 1;
int x = 0;
for (;;) {
i = i * x;
i = i + x;
//@ assert i == 5;
}
}

0 comments on commit d19ecf3

Please sign in to comment.