-
Notifications
You must be signed in to change notification settings - Fork 69
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 a lint for attempting to mutate a const
item
#345
Comments
This issue is not meant to be used for technical discussion. There is a Zulip stream for that. Use this issue to leave procedural comments, such as volunteering to review, indicating that you second the proposal (or third, etc), or raising a concern that you would like to be addressed. |
FWIW there was already an issue opened in Clippy asking to uplift a lint that does similar things ( The issue: rust-lang/rust-clippy#4497 |
@rustbot second |
Technically speaking lints require approval by lang team, particularly if they are warn-by-default -- but I think this is a good idea. Can you nominate the PR once for T-lang it is ready, @Aaron1011 ? cc @rust-lang/lang |
@nikomatsakis This is my first time filing an MCP - should I wait for the final comment period to end before nominating it? |
I agree that this sounds like a good idea. It feels like we need to have a process for this that doesn't need FCPs on both a compiler MCP and a lang something. |
@Aaron1011 sorry what I meant was, go ahead and write the PR, just nominate it once it is ready |
i.e., let's consider the MCP approved |
Proposal
Add a new lint
CONST_ITEM_MUTATION
. Given an itemconst FOO: SomeType = ..
, this lint fires on:FOO.field = some_val
) orarray entry (
FOO.array_field[0] = val
)const
item (&mut FOO
), includingthrough an autoderef
FOO.some_mut_self_method()
The lint message explains that since each use of a constant creates a
new temporary, the original
const
item will not be modified.The need for such a lint was brought up in rust-lang/rust#74053, rust-lang/rust#55721, and rust-lang/rust-clippy#829
While this could be a clippy lint, I believe that this is important enough to go in the compiler. Without this lint, users may write useless code which is silent accepted (e.g.
FOO[0] = my_val
orMY_CONST_VEC.push(val)
). Such code may come about as a result of unrelated refactoring (e.g. changing astatic
to aconst
, and changing a method to use&mut self
instead of interior mutability).Mentors or Reviewers
I've implemented this lint in rust-lang/rust#75573
cc @oli-obk
Process
The main points of the Major Change Process is as follows:
@rustbot second
.-C flag
, then full team check-off is required.@rfcbot fcp merge
on either the MCP or the PR.You can read more about Major Change Proposals on forge.
Comments
This issue is not meant to be used for technical discussion. There is a Zulip stream for that. Use this issue to leave procedural comments, such as volunteering to review, indicating that you second the proposal (or third, etc), or raising a concern that you would like to be addressed.
The text was updated successfully, but these errors were encountered: