-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Add tests for pattern-alt statements. #55
Labels
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Comments
WONTFIX (not required for bootstrapping) |
pcwalton
added a commit
to pcwalton/rust
that referenced
this issue
Sep 9, 2014
instead of prefix `..`. This breaks code that looked like: match foo { [ first, ..middle, last ] => { ... } } Change this code to: match foo { [ first, middle.., last ] => { ... } } RFC rust-lang#55. Closes rust-lang#16967. [breaking-change]
arielb1
pushed a commit
to arielb1/rust
that referenced
this issue
Apr 10, 2015
…t-lang#54, and rust-lang#55 as complete
dlrobertson
pushed a commit
to dlrobertson/rust
that referenced
this issue
Nov 29, 2018
Document RFC 1219: `use` group `as`
Dylan-DPC-zz
pushed a commit
to Dylan-DPC-zz/rust
that referenced
this issue
Sep 23, 2020
Changing the alloc() to accept &self instead of &mut self Fixes: [rust-lang#55](rust-lang/wg-allocators#55) This is the first cut. It only makes the change for `alloc` method.
jacob-hughes
referenced
this issue
in jacob-hughes/alloy
Apr 29, 2021
55: Fix bug where bool in `thread_registered` was inverted r=ltratt a=jacob-hughes This unblocks softdevteam#31. Co-authored-by: Jake Hughes <[email protected]>
bors
pushed a commit
to rust-lang-ci/rust
that referenced
this issue
Oct 1, 2021
implement guards in rem and div unsound cases
jaisnan
pushed a commit
to jaisnan/rust-dev
that referenced
this issue
Aug 22, 2024
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses. --------- Co-authored-by: Michael Tautschnig <[email protected]>
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Currently very lightly tested. Could use a lot more.
The text was updated successfully, but these errors were encountered: