-
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
Ensure every unstable language feature has a tracking issue. #51090
Ensure every unstable language feature has a tracking issue. #51090
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
This comment has been minimized.
This comment has been minimized.
1bfbf30
to
141399b
Compare
This comment has been minimized.
This comment has been minimized.
141399b
to
79e53a3
Compare
@bors: r+ |
📌 Commit 79e53a3 has been approved by |
⌛ Testing commit 79e53a3377be86de3177d509d64352b77c717367 with merge 5b01b21079590ee4130e9d797d5b974eb4b595c8... |
💔 Test failed - status-appveyor |
79e53a3
to
509f414
Compare
@bors r=alexcrichton |
📌 Commit 509f414 has been approved by |
…lexcrichton Ensure every unstable language feature has a tracking issue. Filled in the missing numbers: * `abi_ptx` → #38788 * `generators` → #43122 * `global_allocator` → #27389 Reused existing tracking issues because they were decomposed from a larger feature * `*_target_feature` → #44839 (reusing the old `target_feature` number) * `proc_macros_*` → #38356 (reusing the to-be-stabilized `proc_macros` number) Filed new issues * `exhaustive_patterns` → #51085 * `pattern_parentheses` → #51087 * `wasm_custom_section` and `wasm_import_module` → #51088
☀️ Test successful - status-appveyor, status-travis |
…compiler-errors Issue numbers are enforced on active features; remove FIXME Since rust-lang#51090 tidy enforces that active features have an issue number, so remove the FIXME. This PR is part of rust-lang#44366 which is E-help-wanted.
Filled in the missing numbers:
abi_ptx
→ Tracking issue for the "ptx-kernel" ABI #38788generators
→ Tracking issue for RFC 2033: Experimentally add coroutines to Rust #43122global_allocator
→ Tracking issue for changing the global, default allocator (RFC 1974) #27389Reused existing tracking issues because they were decomposed from a larger feature
*_target_feature
→ Tracking issue for RFC 2045: improving#[target_feature]
#44839 (reusing the oldtarget_feature
number)proc_macros_*
→ Tracking issue for RFC 1566: Procedural macros #38356 (reusing the to-be-stabilizedproc_macros
number)Filed new issues
exhaustive_patterns
→ Tracking issue for RFC 1872:exhaustive_patterns
feature #51085pattern_parentheses
→ Tracking issue for RFC 554:pattern_parentheses
feature #51087wasm_custom_section
andwasm_import_module
→ Tracking issue for the #[wasm_custom_section] attribute #51088