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
The example above has the following code in its fstar bundle:
let cond (_: Prims.unit) : bool = true
let rec f (_: Prims.unit)
: Prims.Pure Prims.unit
(requires Playground.B.cond ())
(fun _ -> Prims.l_True) = g ()
Here we find Playground.B.cond in the precondition which should be transformed to just cond to avoid a cyclic dependency. I suspect the macro does something at the string level which will make it hard to fix.
The text was updated successfully, but these errors were encountered:
Open this code snippet in the playground
The example above has the following code in its fstar bundle:
Here we find
Playground.B.cond
in the precondition which should be transformed to justcond
to avoid a cyclic dependency. I suspect the macro does something at the string level which will make it hard to fix.The text was updated successfully, but these errors were encountered: