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 expression m.setBy(n, x => x + 1).get(n) == nextN produces Apalache IR like
/\ LET (*@type: (() => (Int -> Int)); *) __quint_var3 == m IN
[
(__quint_var3) EXCEPT
![n] =
(LET (*@type: ((Int) => Int); *) __QUINT_LAMBDA0(x) == x + 1 IN
__QUINT_LAMBDA0)((__quint_var3)[n])
][
n
]
= nextN
And this yields the error
at.forsyte.apalache.infra.AdaptedException: <unknown>: internal error in type checking: Bug in ToEtcExpr. Expected an operator name, found: LET __QUINT_LAMBDA0(x) ≜ x + 1 IN __QUINT_LAMBDA0
The expression
m.setBy(n, x => x + 1).get(n) == nextN
produces Apalache IR likeAnd this yields the error
Which is another instance of running in to #2517
The text was updated successfully, but these errors were encountered: