1
Fork 0

Auto merge of #97624 - matthiaskrgr:rollup-rtcqjx9, r=matthiaskrgr

Rollup of 4 pull requests

Successful merges:

 - #96271 (suggest `?` when method is missing on `Result<T, _>` but found on `T`)
 - #97264 (Suggest `extern crate foo` when failing to resolve `use foo`)
 - #97592 (rustdoc: also index impl trait and raw pointers)
 - #97621 (update Miri)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
This commit is contained in:
bors 2022-06-01 17:25:29 +00:00
commit b5a2d27f8f
38 changed files with 647 additions and 69 deletions

View file

@ -5509,6 +5509,8 @@ dependencies = [
"pretty_assertions 1.2.1", "pretty_assertions 1.2.1",
"regex", "regex",
"rustc_version", "rustc_version",
"serde",
"serde_json",
] ]
[[package]] [[package]]

View file

@ -1839,9 +1839,18 @@ impl<'a> Resolver<'a> {
)), )),
) )
} else if self.session.edition() == Edition::Edition2015 { } else if self.session.edition() == Edition::Edition2015 {
(format!("maybe a missing crate `{}`?", ident), None) (
format!("maybe a missing crate `{ident}`?"),
Some((
vec![],
format!(
"consider adding `extern crate {ident}` to use the `{ident}` crate"
),
Applicability::MaybeIncorrect,
)),
)
} else { } else {
(format!("could not find `{}` in the crate root", ident), None) (format!("could not find `{ident}` in the crate root"), None)
} }
} else if i > 0 { } else if i > 0 {
let parent = path[i - 1].ident.name; let parent = path[i - 1].ident.name;
@ -1852,7 +1861,7 @@ impl<'a> Resolver<'a> {
"the list of imported crates".to_owned() "the list of imported crates".to_owned()
} }
kw::PathRoot | kw::Crate => "the crate root".to_owned(), kw::PathRoot | kw::Crate => "the crate root".to_owned(),
_ => format!("`{}`", parent), _ => format!("`{parent}`"),
}; };
let mut msg = format!("could not find `{}` in {}", ident, parent); let mut msg = format!("could not find `{}` in {}", ident, parent);

View file

@ -475,6 +475,10 @@ impl<'a, 'b> ImportResolver<'a, 'b> {
} }
if let Some((suggestions, msg, applicability)) = err.suggestion { if let Some((suggestions, msg, applicability)) = err.suggestion {
if suggestions.is_empty() {
diag.help(&msg);
continue;
}
diag.multipart_suggestion(&msg, suggestions, applicability); diag.multipart_suggestion(&msg, suggestions, applicability);
} }
} }

View file

@ -978,45 +978,9 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
label_span_not_found(&mut err); label_span_not_found(&mut err);
} }
if let SelfSource::MethodCall(expr) = source self.check_for_field_method(&mut err, source, span, actual, item_name);
&& let Some((fields, substs)) = self.get_field_candidates(span, actual)
{
let call_expr =
self.tcx.hir().expect_expr(self.tcx.hir().get_parent_node(expr.hir_id));
for candidate_field in fields.iter() {
if let Some(field_path) = self.check_for_nested_field_satisfying(
span,
&|_, field_ty| {
self.lookup_probe(
span,
item_name,
field_ty,
call_expr,
ProbeScope::AllTraits,
)
.is_ok()
},
candidate_field,
substs,
vec![],
self.tcx.parent_module(expr.hir_id).to_def_id(),
) {
let field_path_str = field_path
.iter()
.map(|id| id.name.to_ident_string())
.collect::<Vec<String>>()
.join(".");
debug!("field_path_str: {:?}", field_path_str);
err.span_suggestion_verbose( self.check_for_unwrap_self(&mut err, source, span, actual, item_name);
item_name.span.shrink_to_lo(),
"one of the expressions' fields has a method of the same name",
format!("{field_path_str}."),
Applicability::MaybeIncorrect,
);
}
}
}
bound_spans.sort(); bound_spans.sort();
bound_spans.dedup(); bound_spans.dedup();
@ -1343,6 +1307,145 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
false false
} }
fn check_for_field_method(
&self,
err: &mut DiagnosticBuilder<'tcx, ErrorGuaranteed>,
source: SelfSource<'tcx>,
span: Span,
actual: Ty<'tcx>,
item_name: Ident,
) {
if let SelfSource::MethodCall(expr) = source
&& let Some((fields, substs)) = self.get_field_candidates(span, actual)
{
let call_expr = self.tcx.hir().expect_expr(self.tcx.hir().get_parent_node(expr.hir_id));
for candidate_field in fields.iter() {
if let Some(field_path) = self.check_for_nested_field_satisfying(
span,
&|_, field_ty| {
self.lookup_probe(
span,
item_name,
field_ty,
call_expr,
ProbeScope::AllTraits,
)
.is_ok()
},
candidate_field,
substs,
vec![],
self.tcx.parent_module(expr.hir_id).to_def_id(),
) {
let field_path_str = field_path
.iter()
.map(|id| id.name.to_ident_string())
.collect::<Vec<String>>()
.join(".");
debug!("field_path_str: {:?}", field_path_str);
err.span_suggestion_verbose(
item_name.span.shrink_to_lo(),
"one of the expressions' fields has a method of the same name",
format!("{field_path_str}."),
Applicability::MaybeIncorrect,
);
}
}
}
}
fn check_for_unwrap_self(
&self,
err: &mut DiagnosticBuilder<'tcx, ErrorGuaranteed>,
source: SelfSource<'tcx>,
span: Span,
actual: Ty<'tcx>,
item_name: Ident,
) {
let tcx = self.tcx;
let SelfSource::MethodCall(expr) = source else { return; };
let call_expr = tcx.hir().expect_expr(tcx.hir().get_parent_node(expr.hir_id));
let ty::Adt(kind, substs) = actual.kind() else { return; };
if !kind.is_enum() {
return;
}
let matching_variants: Vec<_> = kind
.variants()
.iter()
.flat_map(|variant| {
let [field] = &variant.fields[..] else { return None; };
let field_ty = field.ty(tcx, substs);
// Skip `_`, since that'll just lead to ambiguity.
if self.resolve_vars_if_possible(field_ty).is_ty_var() {
return None;
}
self.lookup_probe(span, item_name, field_ty, call_expr, ProbeScope::AllTraits)
.ok()
.map(|pick| (variant, field, pick))
})
.collect();
let ret_ty_matches = |diagnostic_item| {
if let Some(ret_ty) = self
.ret_coercion
.as_ref()
.map(|c| self.resolve_vars_if_possible(c.borrow().expected_ty()))
&& let ty::Adt(kind, _) = ret_ty.kind()
&& tcx.get_diagnostic_item(diagnostic_item) == Some(kind.did())
{
true
} else {
false
}
};
match &matching_variants[..] {
[(_, field, pick)] => {
let self_ty = field.ty(tcx, substs);
err.span_note(
tcx.def_span(pick.item.def_id),
&format!("the method `{item_name}` exists on the type `{self_ty}`"),
);
let (article, kind, variant, question) =
if Some(kind.did()) == tcx.get_diagnostic_item(sym::Result) {
("a", "Result", "Err", ret_ty_matches(sym::Result))
} else if Some(kind.did()) == tcx.get_diagnostic_item(sym::Option) {
("an", "Option", "None", ret_ty_matches(sym::Option))
} else {
return;
};
if question {
err.span_suggestion_verbose(
expr.span.shrink_to_hi(),
format!(
"use the `?` operator to extract the `{self_ty}` value, propagating \
{article} `{kind}::{variant}` value to the caller"
),
"?".to_owned(),
Applicability::MachineApplicable,
);
} else {
err.span_suggestion_verbose(
expr.span.shrink_to_hi(),
format!(
"consider using `{kind}::expect` to unwrap the `{self_ty}` value, \
panicking if the value is {article} `{kind}::{variant}`"
),
".expect(\"REASON\")".to_owned(),
Applicability::HasPlaceholders,
);
}
}
// FIXME(compiler-errors): Support suggestions for other matching enum variants
_ => {}
}
}
pub(crate) fn note_unmet_impls_on_type( pub(crate) fn note_unmet_impls_on_type(
&self, &self,
err: &mut Diagnostic, err: &mut Diagnostic,
@ -1662,13 +1765,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
(self.tcx.mk_mut_ref(self.tcx.lifetimes.re_erased, rcvr_ty), "&mut "), (self.tcx.mk_mut_ref(self.tcx.lifetimes.re_erased, rcvr_ty), "&mut "),
(self.tcx.mk_imm_ref(self.tcx.lifetimes.re_erased, rcvr_ty), "&"), (self.tcx.mk_imm_ref(self.tcx.lifetimes.re_erased, rcvr_ty), "&"),
] { ] {
match self.lookup_probe( match self.lookup_probe(span, item_name, *rcvr_ty, rcvr, ProbeScope::AllTraits) {
span,
item_name,
*rcvr_ty,
rcvr,
crate::check::method::probe::ProbeScope::AllTraits,
) {
Ok(pick) => { Ok(pick) => {
// If the method is defined for the receiver we have, it likely wasn't `use`d. // If the method is defined for the receiver we have, it likely wasn't `use`d.
// We point at the method, but we just skip the rest of the check for arbitrary // We point at the method, but we just skip the rest of the check for arbitrary
@ -1700,13 +1797,15 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
(self.tcx.mk_diagnostic_item(*rcvr_ty, sym::Arc), "Arc::new"), (self.tcx.mk_diagnostic_item(*rcvr_ty, sym::Arc), "Arc::new"),
(self.tcx.mk_diagnostic_item(*rcvr_ty, sym::Rc), "Rc::new"), (self.tcx.mk_diagnostic_item(*rcvr_ty, sym::Rc), "Rc::new"),
] { ] {
if let Some(new_rcvr_t) = *rcvr_ty && let Ok(pick) = self.lookup_probe( if let Some(new_rcvr_t) = *rcvr_ty
span, && let Ok(pick) = self.lookup_probe(
item_name, span,
new_rcvr_t, item_name,
rcvr, new_rcvr_t,
crate::check::method::probe::ProbeScope::AllTraits, rcvr,
) { ProbeScope::AllTraits,
)
{
debug!("try_alt_rcvr: pick candidate {:?}", pick); debug!("try_alt_rcvr: pick candidate {:?}", pick);
let did = Some(pick.item.container.id()); let did = Some(pick.item.container.id());
// We don't want to suggest a container type when the missing // We don't want to suggest a container type when the missing

View file

@ -1667,6 +1667,10 @@ impl Type {
matches!(self, Type::Generic(_)) matches!(self, Type::Generic(_))
} }
pub(crate) fn is_impl_trait(&self) -> bool {
matches!(self, Type::ImplTrait(_))
}
pub(crate) fn is_primitive(&self) -> bool { pub(crate) fn is_primitive(&self) -> bool {
self.primitive_type().is_some() self.primitive_type().is_some()
} }

View file

@ -226,17 +226,17 @@ fn get_index_type_name(clean_type: &clean::Type) -> Option<Symbol> {
Some(path.segments.last().unwrap().name) Some(path.segments.last().unwrap().name)
} }
// We return an empty name because we don't care about the generic name itself. // We return an empty name because we don't care about the generic name itself.
clean::Generic(_) => Some(kw::Empty), clean::Generic(_) | clean::ImplTrait(_) => Some(kw::Empty),
clean::Primitive(ref p) => Some(p.as_sym()), clean::Primitive(ref p) => Some(p.as_sym()),
clean::BorrowedRef { ref type_, .. } => get_index_type_name(type_), clean::BorrowedRef { ref type_, .. } | clean::RawPointer(_, ref type_) => {
get_index_type_name(type_)
}
clean::BareFunction(_) clean::BareFunction(_)
| clean::Tuple(_) | clean::Tuple(_)
| clean::Slice(_) | clean::Slice(_)
| clean::Array(_, _) | clean::Array(_, _)
| clean::RawPointer(_, _)
| clean::QPath { .. } | clean::QPath { .. }
| clean::Infer | clean::Infer => None,
| clean::ImplTrait(_) => None,
} }
} }
@ -264,10 +264,12 @@ fn add_generics_and_bounds_as_types<'tcx, 'a>(
mut generics: Vec<TypeWithKind>, mut generics: Vec<TypeWithKind>,
cache: &Cache, cache: &Cache,
) { ) {
let is_full_generic = ty.is_full_generic(); // generics and impl trait are both identified by their generics,
// rather than a type name itself
let anonymous = ty.is_full_generic() || ty.is_impl_trait();
let generics_empty = generics.is_empty(); let generics_empty = generics.is_empty();
if is_full_generic { if anonymous {
if generics_empty { if generics_empty {
// This is a type parameter with no trait bounds (for example: `T` in // This is a type parameter with no trait bounds (for example: `T` in
// `fn f<T>(p: T)`, so not useful for the rustdoc search because we would end up // `fn f<T>(p: T)`, so not useful for the rustdoc search because we would end up
@ -318,7 +320,7 @@ fn add_generics_and_bounds_as_types<'tcx, 'a>(
if index_ty.name.as_ref().map(|s| s.is_empty() && generics_empty).unwrap_or(true) { if index_ty.name.as_ref().map(|s| s.is_empty() && generics_empty).unwrap_or(true) {
return; return;
} }
if is_full_generic { if anonymous {
// We remove the name of the full generic because we have no use for it. // We remove the name of the full generic because we have no use for it.
index_ty.name = Some(String::new()); index_ty.name = Some(String::new());
res.push(TypeWithKind::from((index_ty, ItemType::Generic))); res.push(TypeWithKind::from((index_ty, ItemType::Generic)));
@ -398,6 +400,23 @@ fn add_generics_and_bounds_as_types<'tcx, 'a>(
} }
insert_ty(res, tcx, arg.clone(), ty_generics, cache); insert_ty(res, tcx, arg.clone(), ty_generics, cache);
} }
} else if let Type::ImplTrait(ref bounds) = *arg {
let mut ty_generics = Vec::new();
for bound in bounds {
if let Some(path) = bound.get_trait_path() {
let ty = Type::Path { path };
add_generics_and_bounds_as_types(
self_,
generics,
&ty,
tcx,
recurse + 1,
&mut ty_generics,
cache,
);
}
}
insert_ty(res, tcx, arg.clone(), ty_generics, cache);
} else { } else {
// This is not a type parameter. So for example if we have `T, U: Option<T>`, and we're // This is not a type parameter. So for example if we have `T, U: Option<T>`, and we're
// looking at `Option`, we enter this "else" condition, otherwise if it's `T`, we don't. // looking at `Option`, we enter this "else" condition, otherwise if it's `T`, we don't.

View file

@ -0,0 +1,51 @@
// ignore-order
const QUERY = [
'Aaaaaaa -> i32',
'Aaaaaaa -> Aaaaaaa',
'Aaaaaaa -> usize',
'-> Aaaaaaa',
'Aaaaaaa',
];
const EXPECTED = [
{
// Aaaaaaa -> i32
'others': [
{ 'path': 'impl_trait::Ccccccc', 'name': 'eeeeeee' },
],
},
{
// Aaaaaaa -> Aaaaaaa
'others': [
{ 'path': 'impl_trait::Ccccccc', 'name': 'fffffff' },
],
},
{
// Aaaaaaa -> usize
'others': [],
},
{
// -> Aaaaaaa
'others': [
{ 'path': 'impl_trait::Ccccccc', 'name': 'fffffff' },
{ 'path': 'impl_trait::Ccccccc', 'name': 'ddddddd' },
{ 'path': 'impl_trait', 'name': 'bbbbbbb' },
],
},
{
// Aaaaaaa
'others': [
{ 'path': 'impl_trait', 'name': 'Aaaaaaa' },
],
'in_args': [
{ 'path': 'impl_trait::Ccccccc', 'name': 'fffffff' },
{ 'path': 'impl_trait::Ccccccc', 'name': 'eeeeeee' },
],
'returned': [
{ 'path': 'impl_trait::Ccccccc', 'name': 'fffffff' },
{ 'path': 'impl_trait::Ccccccc', 'name': 'ddddddd' },
{ 'path': 'impl_trait', 'name': 'bbbbbbb' },
],
},
];

View file

@ -0,0 +1,21 @@
pub trait Aaaaaaa {}
impl Aaaaaaa for () {}
pub fn bbbbbbb() -> impl Aaaaaaa {
()
}
pub struct Ccccccc {}
impl Ccccccc {
pub fn ddddddd(&self) -> impl Aaaaaaa {
()
}
pub fn eeeeeee(&self, _x: impl Aaaaaaa) -> i32 {
0
}
pub fn fffffff(&self, x: impl Aaaaaaa) -> impl Aaaaaaa {
x
}
}

View file

@ -0,0 +1,55 @@
// ignore-order
const QUERY = [
'Aaaaaaa -> i32',
'Aaaaaaa -> Aaaaaaa',
'Aaaaaaa -> usize',
'-> Aaaaaaa',
'Aaaaaaa',
];
const EXPECTED = [
{
// Aaaaaaa -> i32
'others': [
{ 'path': 'raw_pointer::Ccccccc', 'name': 'eeeeeee' },
],
},
{
// Aaaaaaa -> Aaaaaaa
'others': [
{ 'path': 'raw_pointer::Ccccccc', 'name': 'fffffff' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'ggggggg' },
],
},
{
// Aaaaaaa -> usize
'others': [],
},
{
// -> Aaaaaaa
'others': [
{ 'path': 'raw_pointer::Ccccccc', 'name': 'fffffff' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'ggggggg' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'ddddddd' },
{ 'path': 'raw_pointer', 'name': 'bbbbbbb' },
],
},
{
// Aaaaaaa
'others': [
{ 'path': 'raw_pointer', 'name': 'Aaaaaaa' },
],
'in_args': [
{ 'path': 'raw_pointer::Ccccccc', 'name': 'fffffff' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'ggggggg' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'eeeeeee' },
],
'returned': [
{ 'path': 'raw_pointer::Ccccccc', 'name': 'fffffff' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'ggggggg' },
{ 'path': 'raw_pointer::Ccccccc', 'name': 'ddddddd' },
{ 'path': 'raw_pointer', 'name': 'bbbbbbb' },
],
},
];

View file

@ -0,0 +1,24 @@
use std::ptr;
pub struct Aaaaaaa {}
pub fn bbbbbbb() -> *const Aaaaaaa {
ptr::null()
}
pub struct Ccccccc {}
impl Ccccccc {
pub fn ddddddd(&self) -> *const Aaaaaaa {
ptr::null()
}
pub fn eeeeeee(&self, _x: *const Aaaaaaa) -> i32 {
0
}
pub fn fffffff(&self, x: *const Aaaaaaa) -> *const Aaaaaaa {
x
}
pub fn ggggggg(&self, x: *mut Aaaaaaa) -> *mut Aaaaaaa {
x
}
}

View file

@ -3,6 +3,8 @@ error[E0433]: failed to resolve: maybe a missing crate `unresolved_crate`?
| |
LL | use unresolved_crate::module::Name; LL | use unresolved_crate::module::Name;
| ^^^^^^^^^^^^^^^^ maybe a missing crate `unresolved_crate`? | ^^^^^^^^^^^^^^^^ maybe a missing crate `unresolved_crate`?
|
= help: consider adding `extern crate unresolved_crate` to use the `unresolved_crate` crate
error: Compilation failed, aborting rustdoc error: Compilation failed, aborting rustdoc

View file

@ -3,6 +3,8 @@ error[E0433]: failed to resolve: maybe a missing crate `r#mod`?
| |
LL | pub(in crate::r#mod) fn main() {} LL | pub(in crate::r#mod) fn main() {}
| ^^^^^ maybe a missing crate `r#mod`? | ^^^^^ maybe a missing crate `r#mod`?
|
= help: consider adding `extern crate r#mod` to use the `r#mod` crate
error: Compilation failed, aborting rustdoc error: Compilation failed, aborting rustdoc

View file

@ -3,12 +3,16 @@ error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
| |
LL | pub(in nonexistent) field: u8 LL | pub(in nonexistent) field: u8
| ^^^^^^^^^^^ maybe a missing crate `nonexistent`? | ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
error[E0433]: failed to resolve: maybe a missing crate `nonexistent`? error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
--> $DIR/field-attributes-vis-unresolved.rs:22:12 --> $DIR/field-attributes-vis-unresolved.rs:22:12
| |
LL | pub(in nonexistent) u8 LL | pub(in nonexistent) u8
| ^^^^^^^^^^^ maybe a missing crate `nonexistent`? | ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
error: aborting due to 2 previous errors error: aborting due to 2 previous errors

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `something`
| |
LL | use something::Foo; LL | use something::Foo;
| ^^^^^^^^^ maybe a missing crate `something`? | ^^^^^^^^^ maybe a missing crate `something`?
|
= help: consider adding `extern crate something` to use the `something` crate
error: aborting due to previous error error: aborting due to previous error

View file

@ -3,12 +3,16 @@ error[E0432]: unresolved import `core`
| |
LL | use core::default; LL | use core::default;
| ^^^^ maybe a missing crate `core`? | ^^^^ maybe a missing crate `core`?
|
= help: consider adding `extern crate core` to use the `core` crate
error[E0433]: failed to resolve: maybe a missing crate `core`? error[E0433]: failed to resolve: maybe a missing crate `core`?
--> $DIR/feature-gate-extern_absolute_paths.rs:4:19 --> $DIR/feature-gate-extern_absolute_paths.rs:4:19
| |
LL | let _: u8 = ::core::default::Default(); LL | let _: u8 = ::core::default::Default();
| ^^^^ maybe a missing crate `core`? | ^^^^ maybe a missing crate `core`?
|
= help: consider adding `extern crate core` to use the `core` crate
error: aborting due to 2 previous errors error: aborting due to 2 previous errors

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `main`
| |
LL | use main::bar; LL | use main::bar;
| ^^^^ maybe a missing crate `main`? | ^^^^ maybe a missing crate `main`?
|
= help: consider adding `extern crate main` to use the `main` crate
error: aborting due to previous error error: aborting due to previous error

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `unresolved`
| |
LL | use unresolved::*; LL | use unresolved::*;
| ^^^^^^^^^^ maybe a missing crate `unresolved`? | ^^^^^^^^^^ maybe a missing crate `unresolved`?
|
= help: consider adding `extern crate unresolved` to use the `unresolved` crate
error: aborting due to previous error error: aborting due to previous error

View file

@ -3,18 +3,24 @@ error[E0432]: unresolved import `abc`
| |
LL | use abc::one_el; LL | use abc::one_el;
| ^^^ maybe a missing crate `abc`? | ^^^ maybe a missing crate `abc`?
|
= help: consider adding `extern crate abc` to use the `abc` crate
error[E0432]: unresolved import `abc` error[E0432]: unresolved import `abc`
--> $DIR/issue-33464.rs:5:5 --> $DIR/issue-33464.rs:5:5
| |
LL | use abc::{a, bbb, cccccc}; LL | use abc::{a, bbb, cccccc};
| ^^^ maybe a missing crate `abc`? | ^^^ maybe a missing crate `abc`?
|
= help: consider adding `extern crate abc` to use the `abc` crate
error[E0432]: unresolved import `a_very_long_name` error[E0432]: unresolved import `a_very_long_name`
--> $DIR/issue-33464.rs:7:5 --> $DIR/issue-33464.rs:7:5
| |
LL | use a_very_long_name::{el, el2}; LL | use a_very_long_name::{el, el2};
| ^^^^^^^^^^^^^^^^ maybe a missing crate `a_very_long_name`? | ^^^^^^^^^^^^^^^^ maybe a missing crate `a_very_long_name`?
|
= help: consider adding `extern crate a_very_long_name` to use the `a_very_long_name` crate
error: aborting due to 3 previous errors error: aborting due to 3 previous errors

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `issue_36881_aux`
| |
LL | use issue_36881_aux::Foo; LL | use issue_36881_aux::Foo;
| ^^^^^^^^^^^^^^^ maybe a missing crate `issue_36881_aux`? | ^^^^^^^^^^^^^^^ maybe a missing crate `issue_36881_aux`?
|
= help: consider adding `extern crate issue_36881_aux` to use the `issue_36881_aux` crate
error: aborting due to previous error error: aborting due to previous error

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `libc`
| |
LL | use libc::*; LL | use libc::*;
| ^^^^ maybe a missing crate `libc`? | ^^^^ maybe a missing crate `libc`?
|
= help: consider adding `extern crate libc` to use the `libc` crate
error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead? error[E0658]: use of unstable library feature 'rustc_private': this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via `Cargo.toml` instead?
--> $DIR/issue-37887.rs:2:5 --> $DIR/issue-37887.rs:2:5

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `nonexistent_module`
| |
LL | use nonexistent_module::mac; LL | use nonexistent_module::mac;
| ^^^^^^^^^^^^^^^^^^ maybe a missing crate `nonexistent_module`? | ^^^^^^^^^^^^^^^^^^ maybe a missing crate `nonexistent_module`?
|
= help: consider adding `extern crate nonexistent_module` to use the `nonexistent_module` crate
error[E0659]: `mac` is ambiguous error[E0659]: `mac` is ambiguous
--> $DIR/issue-53269.rs:8:5 --> $DIR/issue-53269.rs:8:5

View file

@ -12,6 +12,8 @@ error[E0432]: unresolved import `non_existent`
| |
LL | use non_existent::non_existent; LL | use non_existent::non_existent;
| ^^^^^^^^^^^^ maybe a missing crate `non_existent`? | ^^^^^^^^^^^^ maybe a missing crate `non_existent`?
|
= help: consider adding `extern crate non_existent` to use the `non_existent` crate
error: cannot determine resolution for the derive macro `NonExistent` error: cannot determine resolution for the derive macro `NonExistent`
--> $DIR/issue-55457.rs:5:10 --> $DIR/issue-55457.rs:5:10

View file

@ -3,24 +3,32 @@ error[E0433]: failed to resolve: maybe a missing crate `clippy`?
| |
LL | use clippy::a::b; LL | use clippy::a::b;
| ^^^^^^ maybe a missing crate `clippy`? | ^^^^^^ maybe a missing crate `clippy`?
|
= help: consider adding `extern crate clippy` to use the `clippy` crate
error[E0432]: unresolved import `clippy` error[E0432]: unresolved import `clippy`
--> $DIR/tool-mod-child.rs:1:5 --> $DIR/tool-mod-child.rs:1:5
| |
LL | use clippy::a; LL | use clippy::a;
| ^^^^^^ maybe a missing crate `clippy`? | ^^^^^^ maybe a missing crate `clippy`?
|
= help: consider adding `extern crate clippy` to use the `clippy` crate
error[E0433]: failed to resolve: maybe a missing crate `rustdoc`? error[E0433]: failed to resolve: maybe a missing crate `rustdoc`?
--> $DIR/tool-mod-child.rs:5:5 --> $DIR/tool-mod-child.rs:5:5
| |
LL | use rustdoc::a::b; LL | use rustdoc::a::b;
| ^^^^^^^ maybe a missing crate `rustdoc`? | ^^^^^^^ maybe a missing crate `rustdoc`?
|
= help: consider adding `extern crate rustdoc` to use the `rustdoc` crate
error[E0432]: unresolved import `rustdoc` error[E0432]: unresolved import `rustdoc`
--> $DIR/tool-mod-child.rs:4:5 --> $DIR/tool-mod-child.rs:4:5
| |
LL | use rustdoc::a; LL | use rustdoc::a;
| ^^^^^^^ maybe a missing crate `rustdoc`? | ^^^^^^^ maybe a missing crate `rustdoc`?
|
= help: consider adding `extern crate rustdoc` to use the `rustdoc` crate
error: aborting due to 4 previous errors error: aborting due to 4 previous errors

View file

@ -15,24 +15,32 @@ error[E0432]: unresolved import `foo`
| |
LL | use foo::bar; LL | use foo::bar;
| ^^^ maybe a missing crate `foo`? | ^^^ maybe a missing crate `foo`?
|
= help: consider adding `extern crate foo` to use the `foo` crate
error[E0432]: unresolved import `baz` error[E0432]: unresolved import `baz`
--> $DIR/unresolved-imports-used.rs:12:5 --> $DIR/unresolved-imports-used.rs:12:5
| |
LL | use baz::*; LL | use baz::*;
| ^^^ maybe a missing crate `baz`? | ^^^ maybe a missing crate `baz`?
|
= help: consider adding `extern crate baz` to use the `baz` crate
error[E0432]: unresolved import `foo2` error[E0432]: unresolved import `foo2`
--> $DIR/unresolved-imports-used.rs:14:5 --> $DIR/unresolved-imports-used.rs:14:5
| |
LL | use foo2::bar2; LL | use foo2::bar2;
| ^^^^ maybe a missing crate `foo2`? | ^^^^ maybe a missing crate `foo2`?
|
= help: consider adding `extern crate foo2` to use the `foo2` crate
error[E0432]: unresolved import `baz2` error[E0432]: unresolved import `baz2`
--> $DIR/unresolved-imports-used.rs:15:5 --> $DIR/unresolved-imports-used.rs:15:5
| |
LL | use baz2::*; LL | use baz2::*;
| ^^^^ maybe a missing crate `baz2`? | ^^^^ maybe a missing crate `baz2`?
|
= help: consider adding `extern crate baz2` to use the `baz2` crate
error[E0603]: function `quz` is private error[E0603]: function `quz` is private
--> $DIR/unresolved-imports-used.rs:9:10 --> $DIR/unresolved-imports-used.rs:9:10

View file

@ -14,6 +14,8 @@ error[E0432]: unresolved import `r#extern`
| |
LL | use extern::foo; LL | use extern::foo;
| ^^^^^^ maybe a missing crate `r#extern`? | ^^^^^^ maybe a missing crate `r#extern`?
|
= help: consider adding `extern crate r#extern` to use the `r#extern` crate
error: aborting due to 2 previous errors error: aborting due to 2 previous errors

View file

@ -3,6 +3,8 @@ error[E0433]: failed to resolve: maybe a missing crate `bad`?
| |
LL | pub(in bad::path) mod m1 {} LL | pub(in bad::path) mod m1 {}
| ^^^ maybe a missing crate `bad`? | ^^^ maybe a missing crate `bad`?
|
= help: consider adding `extern crate bad` to use the `bad` crate
error[E0742]: visibilities can only be restricted to ancestor modules error[E0742]: visibilities can only be restricted to ancestor modules
--> $DIR/test.rs:51:12 --> $DIR/test.rs:51:12

View file

@ -3,12 +3,16 @@ error[E0433]: failed to resolve: maybe a missing crate `nonexistant`?
| |
LL | fn global_inner(_: ::nonexistant::Foo) { LL | fn global_inner(_: ::nonexistant::Foo) {
| ^^^^^^^^^^^ maybe a missing crate `nonexistant`? | ^^^^^^^^^^^ maybe a missing crate `nonexistant`?
|
= help: consider adding `extern crate nonexistant` to use the `nonexistant` crate
error[E0433]: failed to resolve: maybe a missing crate `nonexistant`? error[E0433]: failed to resolve: maybe a missing crate `nonexistant`?
--> $DIR/editions-crate-root-2015.rs:7:30 --> $DIR/editions-crate-root-2015.rs:7:30
| |
LL | fn crate_inner(_: crate::nonexistant::Foo) { LL | fn crate_inner(_: crate::nonexistant::Foo) {
| ^^^^^^^^^^^ maybe a missing crate `nonexistant`? | ^^^^^^^^^^^ maybe a missing crate `nonexistant`?
|
= help: consider adding `extern crate nonexistant` to use the `nonexistant` crate
error[E0412]: cannot find type `nonexistant` in the crate root error[E0412]: cannot find type `nonexistant` in the crate root
--> $DIR/editions-crate-root-2015.rs:11:25 --> $DIR/editions-crate-root-2015.rs:11:25

View file

@ -3,12 +3,16 @@ error[E0432]: unresolved import `extern_prelude`
| |
LL | use extern_prelude::S; LL | use extern_prelude::S;
| ^^^^^^^^^^^^^^ maybe a missing crate `extern_prelude`? | ^^^^^^^^^^^^^^ maybe a missing crate `extern_prelude`?
|
= help: consider adding `extern crate extern_prelude` to use the `extern_prelude` crate
error[E0433]: failed to resolve: maybe a missing crate `extern_prelude`? error[E0433]: failed to resolve: maybe a missing crate `extern_prelude`?
--> $DIR/extern-prelude-fail.rs:8:15 --> $DIR/extern-prelude-fail.rs:8:15
| |
LL | let s = ::extern_prelude::S; LL | let s = ::extern_prelude::S;
| ^^^^^^^^^^^^^^ maybe a missing crate `extern_prelude`? | ^^^^^^^^^^^^^^ maybe a missing crate `extern_prelude`?
|
= help: consider adding `extern crate extern_prelude` to use the `extern_prelude` crate
error: aborting due to 2 previous errors error: aborting due to 2 previous errors

View file

@ -3,6 +3,8 @@ error[E0433]: failed to resolve: maybe a missing crate `x`?
| |
LL | use x::y::z; LL | use x::y::z;
| ^ maybe a missing crate `x`? | ^ maybe a missing crate `x`?
|
= help: consider adding `extern crate x` to use the `x` crate
error[E0599]: no function or associated item named `z` found for struct `Box<_, _>` in the current scope error[E0599]: no function or associated item named `z` found for struct `Box<_, _>` in the current scope
--> $DIR/issue-82865.rs:8:10 --> $DIR/issue-82865.rs:8:10

View file

@ -21,12 +21,16 @@ error[E0433]: failed to resolve: maybe a missing crate `nonexistent`?
| |
LL | pub(in nonexistent) struct G; LL | pub(in nonexistent) struct G;
| ^^^^^^^^^^^ maybe a missing crate `nonexistent`? | ^^^^^^^^^^^ maybe a missing crate `nonexistent`?
|
= help: consider adding `extern crate nonexistent` to use the `nonexistent` crate
error[E0433]: failed to resolve: maybe a missing crate `too_soon`? error[E0433]: failed to resolve: maybe a missing crate `too_soon`?
--> $DIR/resolve-bad-visibility.rs:8:8 --> $DIR/resolve-bad-visibility.rs:8:8
| |
LL | pub(in too_soon) struct H; LL | pub(in too_soon) struct H;
| ^^^^^^^^ maybe a missing crate `too_soon`? | ^^^^^^^^ maybe a missing crate `too_soon`?
|
= help: consider adding `extern crate too_soon` to use the `too_soon` crate
error: aborting due to 5 previous errors error: aborting due to 5 previous errors

View file

@ -3,6 +3,8 @@ error[E0433]: failed to resolve: maybe a missing crate `core`?
| |
LL | use core::simd::intrinsics; LL | use core::simd::intrinsics;
| ^^^^ maybe a missing crate `core`? | ^^^^ maybe a missing crate `core`?
|
= help: consider adding `extern crate core` to use the `core` crate
error[E0432]: unresolved import `std::simd::intrinsics` error[E0432]: unresolved import `std::simd::intrinsics`
--> $DIR/portable-intrinsics-arent-exposed.rs:5:5 --> $DIR/portable-intrinsics-arent-exposed.rs:5:5

View file

@ -0,0 +1,59 @@
// compile-flags: --edition=2021
// run-rustfix
#![allow(unused)]
struct Foo;
impl Foo {
fn get(&self) -> u8 {
42
}
}
fn test_result_in_result() -> Result<(), ()> {
let res: Result<_, ()> = Ok(Foo);
res?.get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP use the `?` operator
Ok(())
}
async fn async_test_result_in_result() -> Result<(), ()> {
let res: Result<_, ()> = Ok(Foo);
res?.get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP use the `?` operator
Ok(())
}
fn test_result_in_unit_return() {
let res: Result<_, ()> = Ok(Foo);
res.expect("REASON").get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP consider using `Result::expect` to unwrap the `Foo` value, panicking if the value is a `Result::Err`
}
async fn async_test_result_in_unit_return() {
let res: Result<_, ()> = Ok(Foo);
res.expect("REASON").get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP consider using `Result::expect` to unwrap the `Foo` value, panicking if the value is a `Result::Err`
}
fn test_option_in_option() -> Option<()> {
let res: Option<_> = Some(Foo);
res?.get();
//~^ ERROR no method named `get` found for enum `Option` in the current scope
//~| HELP use the `?` operator
Some(())
}
fn test_option_in_unit_return() {
let res: Option<_> = Some(Foo);
res.expect("REASON").get();
//~^ ERROR no method named `get` found for enum `Option` in the current scope
//~| HELP consider using `Option::expect` to unwrap the `Foo` value, panicking if the value is an `Option::None`
}
fn main() {}

View file

@ -0,0 +1,59 @@
// compile-flags: --edition=2021
// run-rustfix
#![allow(unused)]
struct Foo;
impl Foo {
fn get(&self) -> u8 {
42
}
}
fn test_result_in_result() -> Result<(), ()> {
let res: Result<_, ()> = Ok(Foo);
res.get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP use the `?` operator
Ok(())
}
async fn async_test_result_in_result() -> Result<(), ()> {
let res: Result<_, ()> = Ok(Foo);
res.get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP use the `?` operator
Ok(())
}
fn test_result_in_unit_return() {
let res: Result<_, ()> = Ok(Foo);
res.get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP consider using `Result::expect` to unwrap the `Foo` value, panicking if the value is a `Result::Err`
}
async fn async_test_result_in_unit_return() {
let res: Result<_, ()> = Ok(Foo);
res.get();
//~^ ERROR no method named `get` found for enum `Result` in the current scope
//~| HELP consider using `Result::expect` to unwrap the `Foo` value, panicking if the value is a `Result::Err`
}
fn test_option_in_option() -> Option<()> {
let res: Option<_> = Some(Foo);
res.get();
//~^ ERROR no method named `get` found for enum `Option` in the current scope
//~| HELP use the `?` operator
Some(())
}
fn test_option_in_unit_return() {
let res: Option<_> = Some(Foo);
res.get();
//~^ ERROR no method named `get` found for enum `Option` in the current scope
//~| HELP consider using `Option::expect` to unwrap the `Foo` value, panicking if the value is an `Option::None`
}
fn main() {}

View file

@ -0,0 +1,99 @@
error[E0599]: no method named `get` found for enum `Result` in the current scope
--> $DIR/enum-method-probe.rs:24:9
|
LL | res.get();
| ^^^ method not found in `Result<Foo, ()>`
|
note: the method `get` exists on the type `Foo`
--> $DIR/enum-method-probe.rs:9:5
|
LL | fn get(&self) -> u8 {
| ^^^^^^^^^^^^^^^^^^^
help: use the `?` operator to extract the `Foo` value, propagating a `Result::Err` value to the caller
|
LL | res?.get();
| +
error[E0599]: no method named `get` found for enum `Result` in the current scope
--> $DIR/enum-method-probe.rs:39:9
|
LL | res.get();
| ^^^ method not found in `Result<Foo, ()>`
|
note: the method `get` exists on the type `Foo`
--> $DIR/enum-method-probe.rs:9:5
|
LL | fn get(&self) -> u8 {
| ^^^^^^^^^^^^^^^^^^^
help: consider using `Result::expect` to unwrap the `Foo` value, panicking if the value is a `Result::Err`
|
LL | res.expect("REASON").get();
| +++++++++++++++++
error[E0599]: no method named `get` found for enum `Result` in the current scope
--> $DIR/enum-method-probe.rs:16:9
|
LL | res.get();
| ^^^ method not found in `Result<Foo, ()>`
|
note: the method `get` exists on the type `Foo`
--> $DIR/enum-method-probe.rs:9:5
|
LL | fn get(&self) -> u8 {
| ^^^^^^^^^^^^^^^^^^^
help: use the `?` operator to extract the `Foo` value, propagating a `Result::Err` value to the caller
|
LL | res?.get();
| +
error[E0599]: no method named `get` found for enum `Result` in the current scope
--> $DIR/enum-method-probe.rs:32:9
|
LL | res.get();
| ^^^ method not found in `Result<Foo, ()>`
|
note: the method `get` exists on the type `Foo`
--> $DIR/enum-method-probe.rs:9:5
|
LL | fn get(&self) -> u8 {
| ^^^^^^^^^^^^^^^^^^^
help: consider using `Result::expect` to unwrap the `Foo` value, panicking if the value is a `Result::Err`
|
LL | res.expect("REASON").get();
| +++++++++++++++++
error[E0599]: no method named `get` found for enum `Option` in the current scope
--> $DIR/enum-method-probe.rs:46:9
|
LL | res.get();
| ^^^ method not found in `Option<Foo>`
|
note: the method `get` exists on the type `Foo`
--> $DIR/enum-method-probe.rs:9:5
|
LL | fn get(&self) -> u8 {
| ^^^^^^^^^^^^^^^^^^^
help: use the `?` operator to extract the `Foo` value, propagating an `Option::None` value to the caller
|
LL | res?.get();
| +
error[E0599]: no method named `get` found for enum `Option` in the current scope
--> $DIR/enum-method-probe.rs:54:9
|
LL | res.get();
| ^^^ method not found in `Option<Foo>`
|
note: the method `get` exists on the type `Foo`
--> $DIR/enum-method-probe.rs:9:5
|
LL | fn get(&self) -> u8 {
| ^^^^^^^^^^^^^^^^^^^
help: consider using `Option::expect` to unwrap the `Foo` value, panicking if the value is an `Option::None`
|
LL | res.expect("REASON").get();
| +++++++++++++++++
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0599`.

View file

@ -3,6 +3,8 @@ error[E0432]: unresolved import `not_existing_crate`
| |
LL | use not_existing_crate::*; LL | use not_existing_crate::*;
| ^^^^^^^^^^^^^^^^^^ maybe a missing crate `not_existing_crate`? | ^^^^^^^^^^^^^^^^^^ maybe a missing crate `not_existing_crate`?
|
= help: consider adding `extern crate not_existing_crate` to use the `not_existing_crate` crate
error: aborting due to previous error error: aborting due to previous error

View file

@ -1,5 +1,6 @@
use foo::bar; //~ ERROR unresolved import `foo` [E0432] use foo::bar; //~ ERROR unresolved import `foo` [E0432]
//~^ maybe a missing crate `foo`? //~^ maybe a missing crate `foo`?
//~| HELP consider adding `extern crate foo` to use the `foo` crate
use bar::Baz as x; //~ ERROR unresolved import `bar::Baz` [E0432] use bar::Baz as x; //~ ERROR unresolved import `bar::Baz` [E0432]
//~| no `Baz` in `bar` //~| no `Baz` in `bar`

View file

@ -3,9 +3,11 @@ error[E0432]: unresolved import `foo`
| |
LL | use foo::bar; LL | use foo::bar;
| ^^^ maybe a missing crate `foo`? | ^^^ maybe a missing crate `foo`?
|
= help: consider adding `extern crate foo` to use the `foo` crate
error[E0432]: unresolved import `bar::Baz` error[E0432]: unresolved import `bar::Baz`
--> $DIR/unresolved-import.rs:4:5 --> $DIR/unresolved-import.rs:5:5
| |
LL | use bar::Baz as x; LL | use bar::Baz as x;
| ^^^^^---^^^^^ | ^^^^^---^^^^^
@ -14,7 +16,7 @@ LL | use bar::Baz as x;
| no `Baz` in `bar` | no `Baz` in `bar`
error[E0432]: unresolved import `food::baz` error[E0432]: unresolved import `food::baz`
--> $DIR/unresolved-import.rs:9:5 --> $DIR/unresolved-import.rs:10:5
| |
LL | use food::baz; LL | use food::baz;
| ^^^^^^--- | ^^^^^^---
@ -23,7 +25,7 @@ LL | use food::baz;
| no `baz` in `food` | no `baz` in `food`
error[E0432]: unresolved import `food::beens` error[E0432]: unresolved import `food::beens`
--> $DIR/unresolved-import.rs:14:12 --> $DIR/unresolved-import.rs:15:12
| |
LL | use food::{beens as Foo}; LL | use food::{beens as Foo};
| -----^^^^^^^ | -----^^^^^^^
@ -32,13 +34,13 @@ LL | use food::{beens as Foo};
| help: a similar name exists in the module: `beans` | help: a similar name exists in the module: `beans`
error[E0432]: unresolved import `MyEnum` error[E0432]: unresolved import `MyEnum`
--> $DIR/unresolved-import.rs:38:9 --> $DIR/unresolved-import.rs:39:9
| |
LL | use MyEnum::*; LL | use MyEnum::*;
| ^^^^^^ help: a similar path exists: `self::MyEnum` | ^^^^^^ help: a similar path exists: `self::MyEnum`
error[E0432]: unresolved import `Enum` error[E0432]: unresolved import `Enum`
--> $DIR/unresolved-import.rs:48:9 --> $DIR/unresolved-import.rs:49:9
| |
LL | use Enum::*; LL | use Enum::*;
| ^^^^ help: a similar path exists: `self::Enum` | ^^^^ help: a similar path exists: `self::Enum`

@ -1 +1 @@
Subproject commit 065ff89e33b67b3527fcdd56cf8b432e593e32d4 Subproject commit 749efd29565a9b8f47afb441aaacfcc10bc145d7