Skip to content

Issues: rust-lang/rust

Beta
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

Author
Filter by author
Loading
Label
Filter by label
Loading
Use alt + click/return to exclude labels
or + click/return for logical OR
Projects
Filter by project
Loading
Milestones
Filter by milestone
Loading
Assignee
Filter by who’s assigned
Assigned to nobody Loading
Sort

Issues list

Regression: false negative lint dead_code: dead code is not detected for struct if it implements FromStr A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. C-bug Category: This is a bug. I-prioritize Issue: Indicates that prioritization has been requested for this issue. L-dead_code Lint: dead_code L-false-negative Lint: False negative (should have fired but didn't). needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. regression-from-stable-to-stable Performance or correctness regression from one stable version to another.
#142541 opened Jun 15, 2025 by safinaskar
rustc interrupted by SIGSEGV C-bug Category: This is a bug. I-crash Issue: The compiler crashes (SIGSEGV, SIGABRT, etc). Use I-ICE instead when the compiler panics. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. S-needs-repro Status: This issue has no reproduction and needs a reproduction to make progress. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142536 opened Jun 15, 2025 by jullanggit
ci: git Unknown option: -C A-CI Area: Our Github Actions CI needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. T-infra Relevant to the infrastructure team, which will review and decide on the PR/issue.
#142534 opened Jun 15, 2025 by matthiaskrgr
std::ptr::copy() can read from uninitialized statics (unsound) A-const-eval Area: Constant evaluation, covers all const contexts (static, const fn, ...) C-bug Category: This is a bug. I-prioritize Issue: Indicates that prioritization has been requested for this issue. I-unsound Issue: A soundness hole (worst kind of bug), see: https://en.wikipedia.org/wiki/Soundness T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-lang Relevant to the language team
#142532 opened Jun 15, 2025 by theemathas
ICE: function items cannot be used as const args C-bug Category: This is a bug. F-min_generic_const_args `#![feature(min_generic_const_args)]` I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142529 opened Jun 15, 2025 by matthiaskrgr
ICE: LocalTableInContext: key not found C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ I-prioritize Issue: Indicates that prioritization has been requested for this issue. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. regression-from-stable-to-nightly Performance or correctness regression from stable to nightly. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142525 opened Jun 15, 2025 by matthiaskrgr
-Z time-passes produces confusing output C-bug Category: This is a bug. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. requires-nightly This issue requires a nightly compiler in some way. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142523 opened Jun 15, 2025 by JohnScience
Function no longer auto-vectorizes in 1.87.0 A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. C-optimization Category: An issue highlighting optimization opportunities or PRs implementing such I-prioritize Issue: Indicates that prioritization has been requested for this issue. I-slow Issue: Problems and improvements with respect to performance of generated code. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. regression-from-stable-to-stable Performance or correctness regression from one stable version to another.
#142519 opened Jun 14, 2025 by fintelia
Trait bound From<fn()> is not satisfied even with a correct value A-diagnostics Area: Messages for errors, warnings, and lints C-bug Category: This is a bug. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142513 opened Jun 14, 2025 by ultimaweapon
Tracking issue for release notes of #141937: Report never type lints in dependencies needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-lang Relevant to the language team
#142512 opened Jun 14, 2025 by rustbot
Tracking issue for release notes of #141260: Allow volatile access to non-Rust memory, including address 0 needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-lang Relevant to the language team T-opsem Relevant to the opsem team
#142511 opened Jun 14, 2025 by rustbot
Tracking issue for release notes of #140942: const-eval: allow constants to refer to mutable/external memory, but reject such constants as patterns needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-lang Relevant to the language team
#142510 opened Jun 14, 2025 by rustbot
./x test library/std fails with library profile C-bug Category: This is a bug. S-needs-repro Status: This issue has no reproduction and needs a reproduction to make progress. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
#142505 opened Jun 14, 2025 by clarfonthey
Tracking Issue for path_trailing_sep C-tracking-issue Category: An issue tracking the progress of sth. like the implementation of an RFC S-tracking-unimplemented Status: The feature has not been implemented. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#142503 opened Jun 14, 2025 by clarfonthey
1 of 4 tasks
ICE: snapshot vec: index out of bounds C-bug Category: This is a bug. I-ICE Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️ needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. S-has-bisection Status: A bisection has been found for this issue T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142488 opened Jun 14, 2025 by matthiaskrgr
this method is equivalent to section of Vec::extract_if seems incorrect A-collections Area: `std::collections` A-docs Area: Documentation for any part of the project, including the compiler, standard library, and tools T-libs Relevant to the library team, which will review and decide on the PR/issue.
#142482 opened Jun 14, 2025 by your-diary
jsondocck: replace JSONPath with jq as json query language. A-rustdoc-json Area: Rustdoc JSON backend A-testsuite Area: The testsuite used to check the correctness of rustc C-enhancement Category: An issue proposing an enhancement or a PR with one. E-mentor Call for participation: This issue has a mentor. Use #t-compiler/help on Zulip for discussion. T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
#142479 opened Jun 13, 2025 by aDotInTheVoid
Redundant memset in convolution kernel A-LLVM Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues. C-optimization Category: An issue highlighting optimization opportunities or PRs implementing such I-slow Issue: Problems and improvements with respect to performance of generated code. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142469 opened Jun 13, 2025 by yugr
bootstrap: download-rustc should not download rustc_dev unless it is needed A-download-rustc Area: The `rust.download-rustc` build option. C-enhancement Category: An issue proposing an enhancement or a PR with one. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap)
#142468 opened Jun 13, 2025 by RalfJung
Tracking issue for release notes of #137944: Sized Hierarchy: Part I A-trait-system Area: Trait system relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-types Relevant to the types team, which will review and decide on the PR/issue.
#142467 opened Jun 13, 2025 by rustbot
Tracking issue for release notes of #141352: builtin dyn impl no guide inference needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-types Relevant to the types team, which will review and decide on the PR/issue.
#142465 opened Jun 13, 2025 by rustbot 1.89.0
Tracking issue for release notes of #140985: Change core::iter::Fuse's Default impl to do what its docs say it does needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#142463 opened Jun 13, 2025 by rustbot
Tracking issue for release notes of #141574: impl Default for array::IntoIter needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. relnotes Marks issues that should be documented in the release notes of the next release. relnotes-tracking-issue Marks issues tracking what text to put in release notes. T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
#142462 opened Jun 13, 2025 by rustbot
rustdoc: Invalid automatic link A-intra-doc-links Area: Intra-doc links, the ability to link to items in docs by name C-bug Category: This is a bug. E-needs-mcve Call for participation: This issue has a repro, but needs a Minimal Complete and Verifiable Example T-rustdoc Relevant to the rustdoc team, which will review and decide on the PR/issue.
#142456 opened Jun 13, 2025 by Hywan
upstream globs + other globs should be linted on A-diagnostics Area: Messages for errors, warnings, and lints A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. I-lang-nominated Nominated for discussion during a lang team meeting. P-lang-drag-1 Lang team prioritization drag level 1. https://rust-lang.zulipchat.com/#narrow/channel/410516-t-lang T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
#142448 opened Jun 13, 2025 by workingjubilee
ProTip! Find all open issues with in progress development work with linked:pr.