Skip to content
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

Closed
graydon opened this issue Jun 22, 2010 · 1 comment
Closed

Add tests for pattern-alt statements. #55

graydon opened this issue Jun 22, 2010 · 1 comment
Labels
E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.

Comments

@graydon
Copy link
Contributor

graydon commented Jun 22, 2010

Currently very lightly tested. Could use a lot more.

@graydon
Copy link
Contributor Author

graydon commented Jan 27, 2011

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
kazcw pushed a commit to kazcw/rust that referenced this issue Oct 23, 2018
dlrobertson pushed a commit to dlrobertson/rust that referenced this issue Nov 29, 2018
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 <jh@jakehughes.uk>
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 <tautschn@amazon.com>
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.
Projects
None yet
Development

No branches or pull requests

1 participant