-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Use correct type for let expression generated by datatype update #2059
Merged
Conversation
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
cpitclaudel
force-pushed
the
cpitclaudel_fix-1479-datatype-update
branch
from
April 25, 2022 20:40
9901417
to
8784786
Compare
Closes GH-1479. Co-authored-by: @RustanLeino
cpitclaudel
force-pushed
the
cpitclaudel_fix-1479-datatype-update
branch
from
April 25, 2022 21:43
8784786
to
a46dbd0
Compare
cpitclaudel
added
the
logic
An inconsistency in Dafny's logic (e.g. in the Boogie prelude)
label
Apr 25, 2022
RustanLeino
requested changes
Apr 27, 2022
Test/git-issues/git-issue-1479a.dfy
Outdated
// RUN: %dafny /compile:0 "%s" > "%t" | ||
// RUN: %diff "%s.expect" "%t" | ||
|
||
type T |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine to have the two test files, git-issue-1479a.dfy
and git-issue-1479b.dfy
, but if (for this PR or some future PRs) you want to combine them into one file and there are name clashes, then you can put each example in a separate module
in the one test file.
Co-authored-by: Rustan Leino <leino@amazon.com>
cpitclaudel
force-pushed
the
cpitclaudel_fix-1479-datatype-update
branch
from
April 27, 2022 23:19
c6fe334
to
18b48ba
Compare
cpitclaudel
force-pushed
the
cpitclaudel_fix-1479-datatype-update
branch
from
April 27, 2022 23:19
18b48ba
to
b704560
Compare
RustanLeino
approved these changes
Apr 28, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Closes GH-1479.
Co-authored-by: @RustanLeino