-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
declare_interior_mutable_const
now fires for arcstr::ArcStr
#12951
Comments
declare_interior_mutable_const
can no longer be allowed in a macrodeclare_interior_mutable_const
now fires in cases where it is meant to be allowed
declare_interior_mutable_const
now fires in cases where it is meant to be alloweddeclare_interior_mutable_const
now fires in macros where it is meant to be allowed
This bug has now reached the 1.80.0 stable pre-release :( |
declare_interior_mutable_const
now fires in macros where it is meant to be alloweddeclare_interior_mutable_const
now fires for arcstr::ArcStr
Since it's linting based on the type this also triggers without macros being used: const S: ArcStr = ArcStr::new(); Nominating for discussion for how we want to handle this in an ongoing fashion, we could continue adding exceptions to the list as they pop up or make the lint more conservative |
#13207 This PR might fix this issue, without having to add |
(author of arcstr here) I tried |
Summary
The
arcstr::ArcStr
type is interior mutable for its reference count, but provides a macro which can safely construct const instances. As of 1.81.0-nightly (59e2c01 2024-06-17), presumably due to #12691, there is now a warning emitted even though the macro tries to suppress it — all relevant components of the macro expansion have#[allow(clippy::declare_interior_mutable_const)]
.I imagine that this might be considered “working as intended”, with the solution being to configure
ignore-interior-mutability
much as is done withbytes
. Still, this is a regression in out-of-the-box usability, so I figured I'd report it for consideration.Lint Name
declare_interior_mutable_const
Reproducer
I tried this code:
I saw this happen:
I expected to see this happen: No warning
Version
Additional Labels
No response
The text was updated successfully, but these errors were encountered: