Skip to content

Prefer to suggest stable candidates rather than unstable ones #140795

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

Merged
merged 1 commit into from
May 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4330,6 +4330,7 @@ dependencies = [
"rustc_arena",
"rustc_ast",
"rustc_ast_pretty",
"rustc_attr_data_structures",
"rustc_attr_parsing",
"rustc_data_structures",
"rustc_errors",
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_resolve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ pulldown-cmark = { version = "0.11", features = ["html"], default-features = fal
rustc_arena = { path = "../rustc_arena" }
rustc_ast = { path = "../rustc_ast" }
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
rustc_attr_data_structures = { path = "../rustc_attr_data_structures" }
rustc_attr_parsing = { path = "../rustc_attr_parsing" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_errors = { path = "../rustc_errors" }
Expand Down
74 changes: 68 additions & 6 deletions compiler/rustc_resolve/src/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use rustc_ast::{
self as ast, CRATE_NODE_ID, Crate, ItemKind, MetaItemInner, MetaItemKind, ModKind, NodeId, Path,
};
use rustc_ast_pretty::pprust;
use rustc_attr_data_structures::{self as attr, Stability};
use rustc_data_structures::fx::FxHashSet;
use rustc_data_structures::unord::UnordSet;
use rustc_errors::codes::*;
Expand Down Expand Up @@ -110,6 +111,7 @@ pub(crate) struct ImportSuggestion {
pub via_import: bool,
/// An extra note that should be issued if this item is suggested
pub note: Option<String>,
pub is_stable: bool,
}

/// Adjust the impl span so that just the `impl` keyword is taken by removing
Expand Down Expand Up @@ -1172,13 +1174,16 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
ThinVec::<ast::PathSegment>::new(),
true,
start_did.is_local() || !self.tcx.is_doc_hidden(start_did),
true,
)];
let mut worklist_via_import = vec![];

while let Some((in_module, path_segments, accessible, doc_visible)) = match worklist.pop() {
None => worklist_via_import.pop(),
Some(x) => Some(x),
} {
while let Some((in_module, path_segments, accessible, doc_visible, is_stable)) =
match worklist.pop() {
None => worklist_via_import.pop(),
Some(x) => Some(x),
}
{
let in_module_is_extern = !in_module.def_id().is_local();
in_module.for_each_child(self, |this, ident, ns, name_binding| {
// Avoid non-importable candidates.
Expand Down Expand Up @@ -1258,6 +1263,27 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
candidates.remove(idx);
}

let is_stable = if is_stable
&& let Some(did) = did
&& this.is_stable(did, path.span)
{
true
} else {
false
};

// Rreplace unstable suggestions if we meet a new stable one,
// and do nothing if any other situation. For example, if we
// meet `std::ops::Range` after `std::range::legacy::Range`,
// we will remove the latter and then insert the former.
if is_stable
&& let Some(idx) = candidates
.iter()
.position(|v: &ImportSuggestion| v.did == did && !v.is_stable)
{
candidates.remove(idx);
}

if candidates.iter().all(|v: &ImportSuggestion| v.did != did) {
// See if we're recommending TryFrom, TryInto, or FromIterator and add
// a note about editions
Expand Down Expand Up @@ -1289,6 +1315,7 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
doc_visible: child_doc_visible,
note,
via_import,
is_stable,
});
}
}
Expand All @@ -1315,8 +1342,15 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
if !is_extern_crate_that_also_appears_in_prelude || alias_import {
// add the module to the lookup
if seen_modules.insert(module.def_id()) {
if via_import { &mut worklist_via_import } else { &mut worklist }
.push((module, path_segments, child_accessible, child_doc_visible));
if via_import { &mut worklist_via_import } else { &mut worklist }.push(
(
module,
path_segments,
child_accessible,
child_doc_visible,
is_stable && this.is_stable(module.def_id(), name_binding.span),
),
);
}
}
}
Expand All @@ -1326,6 +1360,34 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
candidates
}

fn is_stable(&self, did: DefId, span: Span) -> bool {
if did.is_local() {
return true;
}

match self.tcx.lookup_stability(did) {
Some(Stability {
level: attr::StabilityLevel::Unstable { implied_by, .. },
feature,
..
}) => {
if span.allows_unstable(feature) {
true
} else if self.tcx.features().enabled(feature) {
true
} else if let Some(implied_by) = implied_by
&& self.tcx.features().enabled(implied_by)
{
true
} else {
false
}
}
Some(_) => true,
None => false,
}
}

/// When name resolution fails, this method can be used to look up candidate
/// entities with the expected name. It allows filtering them using the
/// supplied predicate (which should be used to only accept the types of
Expand Down
1 change: 1 addition & 0 deletions compiler/rustc_resolve/src/late/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2501,6 +2501,7 @@ impl<'ast, 'ra: 'ast, 'tcx> LateResolutionVisitor<'_, 'ast, 'ra, 'tcx> {
doc_visible,
note: None,
via_import: false,
is_stable: true,
},
));
} else {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
const _: Range = 0..1; //~ ERROR cannot find type `Range` in this scope
}
20 changes: 20 additions & 0 deletions tests/ui/did_you_mean/sugg-stable-import-first-issue-140240.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
error[E0412]: cannot find type `Range` in this scope
--> $DIR/sugg-stable-import-first-issue-140240.rs:2:14
|
LL | const _: Range = 0..1;
| ^^^^^ not found in this scope
|
help: consider importing one of these structs
|
LL + use std::collections::btree_map::Range;
|
LL + use std::collections::btree_set::Range;
|
LL + use std::ops::Range;
|
LL + use std::range::Range;
|

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0412`.
Loading