Skip to content

Commit

Permalink
Add missing termination measure to test
Browse files Browse the repository at this point in the history
  • Loading branch information
dnezam committed Feb 3, 2024
1 parent c6ffaa9 commit 641cacb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
package pkg

ghost
decreases
decreases i
opaque
pure func fac(i int) int {
return i <= 1 ? 1 : i * (reveal fac(i - 1))
Expand Down

0 comments on commit 641cacb

Please sign in to comment.