You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to convert programs with an empty preconditions gives the following error: Every statement in invariant block must be a pure boolean invariant.
Attempting to convert programs with an empty preconditions gives the following error: Every statement in invariant block must be a pure boolean invariant.
Minimal test case for reproducing the error:
fun f(Int a): Int{ preconditions { } return a; }