-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Issue deprecation warnings for safe accesses to extern statics #36173
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
@@ -207,6 +207,10 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) { | |||
id: LintId::of(LIFETIME_UNDERSCORE), | |||
reference: "RFC 1177 <https://github.com/rust-lang/rfcs/pull/1177>", | |||
}, | |||
FutureIncompatibleInfo { | |||
id: LintId::of(SAFE_EXTERN_STATICS), | |||
reference: "issue 35112 <https://github.com/rust-lang/rust/issues/35112>", |
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.
the new policy is to make a separate tracking issue, following roughly this template; if you could update with an issue like that, it'd be great.
@nikomatsakis |
Looks great. =) |
@bors r+ |
📌 Commit ef489fc has been approved by |
⌛ Testing commit ef489fc with merge 4391d8e... |
💔 Test failed - auto-win-msvc-64-opt-rustbuild |
@bors r=nikomatsakis |
📌 Commit aadbcff has been approved by |
Fixes #35112
cc #36247