-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Typestate apparently doesn't handle loops... #819
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
Comments
catamorphism
added a commit
that referenced
this issue
Aug 18, 2011
Add the infrastructure for arguments -- as well as local vars -- to be deinitialized with move-mode calls. Address Issue #819
Actually, loops don't have anything to do with it. Typestate didn't handle move-mode arguments correctly at all. Just pushed a commit that fixes it. |
keeperofdakeys
pushed a commit
to keeperofdakeys/rust
that referenced
this issue
Dec 12, 2017
Bump to 0.2.33 Just bumping the release to make getprotobyname, getprotobynumber and getservbyname available.
ZuseZ4
added a commit
to EnzymeAD/rust
that referenced
this issue
Mar 7, 2023
* Fix shuffle canonicalization * Add assertion Co-authored-by: Manuel Drehwald <git@manuel.drehwald.info>
celinval
pushed a commit
to celinval/rust-dev
that referenced
this issue
Jun 4, 2024
* Compute hash for test runs based on main files * Look up `src` instead of `kani-compiler` * Check changes in library folder
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
send
uses move-mode for the second argument, which means thatmessage
is deinitialized the second time through the loop. Typestate should catch this.The text was updated successfully, but these errors were encountered: