-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: The existing behaviour was too strict and ruled out some useful predicates, e.g. ``` predicate P : { a : hack.Name, b : string } { hack.Name S, S } ``` we would have to use a workaround like ``` predicate P : { a : hack.Name, b : string } { hack.Name S, S } where S : string ``` but that should be unnecessary. Reviewed By: josefs Differential Revision: D65269922 fbshipit-source-id: eb01c5d61b4da154645d376515241a0535bec5ea
- Loading branch information
1 parent
68aef3b
commit 069ffd0
Showing
3 changed files
with
12 additions
and
13 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