-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: interaction between triggers, let, and nested quantifiers, fixes
#1347 (#1362) 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)
- Loading branch information
Showing
3 changed files
with
195 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters