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
This error message corresponds to the -Wimplicit-lift warning:
Template Haskell quotes referring to local variables bound outside of the quote are implicitly converted to use lift`.
For example, ``f x = [| reverse x |] becomes f x = [| reverse $(lift x) |]).
This flag issues a warning for every such implicit addition of lift.
This can be useful when debugging more complex staged programs, where an implicit lift` can accidentally conceal a variable used at a wrong stage.
No description provided.
The text was updated successfully, but these errors were encountered: