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
#1347
triggers aren't allowed to have 'let' variables that are declared within a trigger.
However, the logic was wrong for the following corner case:
```
forall |x|
let y ...;
forall |z|
#[trigger] foo(y, z)
```
The problem with this code is that while the trigger *does* contain a let-variable (y),
the trigger is not *for* the outer quantifier, but for the inner one
(where it's allowed because the 'let' is outside)
This gives:
The text was updated successfully, but these errors were encountered: