-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
address some FIXME whose associated issues were marked as closed #44943
Conversation
remove FIXME(rust-lang#13101) since `assert_receiver_is_total_eq` stays. remove FIXME(rust-lang#19649) now that stability markers render. remove FIXME(rust-lang#13642) now the benchmarks were moved. remove FIXME(rust-lang#6220) now that floating points can be formatted. remove FIXME(rust-lang#18248) and write tests for `Rc<str>` and `Rc<[u8]>` remove reference to irelevent issues in FIXME(rust-lang#1697, rust-lang#2178...) update FIXME(rust-lang#5516) to point to getopts issue 7 update FIXME(rust-lang#7771) to point to RFC 628 update FIXME(rust-lang#19839) to point to issue 26925
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @dtolnay (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
FIXME
s whose associated issues were marked as closed
src/librustc/hir/mod.rs
Outdated
@@ -916,8 +916,7 @@ impl Stmt_ { | |||
} | |||
} | |||
|
|||
// FIXME (pending discussion of #1697, #2178...): local should really be | |||
// a refinement on pat. | |||
// FIXME: local should really be a refinement on pat. |
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.
Thanks for the PR! We’ll periodically check in on it to make sure that @dtolnay or someone else from the team reviews it soon. |
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.
Thanks so much for tackling this! Looks good to me except for the one that I reopened.
@@ -10,7 +10,6 @@ | |||
|
|||
use test::Bencher; | |||
|
|||
// FIXME #13642 (these benchmarks should be in another place) |
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.
I reopened this issue because I think it was closed prematurely. Please keep this FIXME for now (or fix #13642!).
Separated the benchmarks in Moved to librustc since the benchmarks are about language features not items in That should hopefully fix #13642 for real this time. |
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.
Thanks for sorting out those benchmarks! I think you need to pick a different module name though.
src/librustc/benches/lib.rs
Outdated
extern crate test; | ||
|
||
mod dispatch; | ||
mod match; |
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.
error: expected identifier, found keyword `match`
--> benches/lib.rs:19:5
|
19 | mod match;
| ^^^^^
@bors r+ |
📌 Commit 559adb7 has been approved by |
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.
I checked off these changes in the checklist in #44366. We are just waiting for this to make it to the top of the build queue and pass tests on all platforms.
address some FIXME whose associated issues were marked as closed part of #44366
☀️ Test successful - status-appveyor, status-travis |
part of #44366