Lambda fixups#572
Merged
brson merged 4 commits intorust-lang:masterfrom Jun 25, 2011
msullivan:lambda-fixups
Merged
Conversation
…ut names. Update the typestate code to understand this.
As a side effect, this fixes a bug where typestate would not properly be checked inside of fn expressions.
…instead of explicitly casing.
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this pull request
Feb 14, 2015
…d a downpayment on RFC rust-lang#572.
keeperofdakeys
pushed a commit
to keeperofdakeys/rust
that referenced
this pull request
Dec 12, 2017
Add x86_64-linux-android support When rust add support for x86_64-linux-android, the tests may be run with: `rustup target add x86_64-linux-android && bash ci/run-docker.sh x86_64-linux-android`. Android x86_64 emulator does not work without hardware acceleration, so we are not able to run tests on travis.
ZuseZ4
pushed a commit
to EnzymeAD/rust
that referenced
this pull request
Mar 7, 2023
celinval
pushed a commit
to celinval/rust-dev
that referenced
this pull request
Jun 4, 2024
* Introduce dev command 'cheat sheets' * edits in response to feedback
antoyo
added a commit
to antoyo/rust
that referenced
this pull request
Jan 13, 2025
Fix volatile loads and stores
tgross35
pushed a commit
to tgross35/rust
that referenced
this pull request
Jun 3, 2025
Remove 80-bit builtins entirely
noscripter
pushed a commit
to noscripter/rust
that referenced
this pull request
Sep 8, 2025
This file contains hidden or 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
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.
Improve handling of anonymous function expressions.
This makes walk call visit_fn_{pre,post} on function expressions in addition to item functions (updating the interface so that they take an option::t[ident] for the function name (a lot of typestate code needed to be superficially altered)) and updates my earlier fix to type inference in lambdas to make use of this.
As a side effect, this fixes a bug where typestate would not properly be run on lambda functions.