Skip to content

Commit bdd2bd1

Browse files
committed
Auto merge of #17329 - Nilstrieb:rustc_deprecated_safe_2024, r=Veykril
Don't mark `#[rustc_deprecated_safe_2024]` functions as unsafe `std::env::set_var` will be unsafe in edition 2024, but not before it. I couldn't quite figure out how to check for the span properly, so for now we just turn the false positives into false negatives, which are less bad.
2 parents af65ff5 + ee26bcb commit bdd2bd1

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

src/tools/rust-analyzer/crates/hir-def/src/attr/builtin.rs

+4
Original file line numberDiff line numberDiff line change
@@ -628,6 +628,10 @@ pub const INERT_ATTRIBUTES: &[BuiltinAttribute] = &[
628628
rustc_safe_intrinsic, Normal, template!(Word), WarnFollowing,
629629
"the `#[rustc_safe_intrinsic]` attribute is used internally to mark intrinsics as safe"
630630
),
631+
rustc_attr!(
632+
rustc_deprecated_safe_2024, Normal, template!(Word), WarnFollowing,
633+
"the `#[rustc_safe_intrinsic]` marks functions as unsafe in Rust 2024",
634+
),
631635

632636
// ==========================================================================
633637
// Internal attributes, Testing:

src/tools/rust-analyzer/crates/hir-ty/src/utils.rs

+5
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,11 @@ fn parent_generic_def(db: &dyn DefDatabase, def: GenericDefId) -> Option<Generic
534534
pub fn is_fn_unsafe_to_call(db: &dyn HirDatabase, func: FunctionId) -> bool {
535535
let data = db.function_data(func);
536536
if data.has_unsafe_kw() {
537+
// Functions that are `#[rustc_deprecated_safe_2024]` are safe to call before 2024.
538+
if db.attrs(func.into()).by_key("rustc_deprecated_safe_2024").exists() {
539+
// FIXME: Properly check the caller span and mark it as unsafe after 2024.
540+
return false;
541+
}
537542
return true;
538543
}
539544

src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/missing_unsafe.rs

+14
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,20 @@ fn main() {
182182
);
183183
}
184184

185+
#[test]
186+
fn no_missing_unsafe_diagnostic_with_deprecated_safe_2024() {
187+
check_diagnostics(
188+
r#"
189+
#[rustc_deprecated_safe_2024]
190+
fn set_var() {}
191+
192+
fn main() {
193+
set_var();
194+
}
195+
"#,
196+
);
197+
}
198+
185199
#[test]
186200
fn add_unsafe_block_when_dereferencing_a_raw_pointer() {
187201
check_fix(

0 commit comments

Comments
 (0)