add testcase for 112590
This commit is contained in:
parent
e7e1a39fa0
commit
b26701ea79
@ -3499,7 +3499,7 @@ fn smart_resolve_path_fragment(
|
|||||||
let report_errors = |this: &mut Self, res: Option<Res>| {
|
let report_errors = |this: &mut Self, res: Option<Res>| {
|
||||||
if this.should_report_errs() {
|
if this.should_report_errs() {
|
||||||
let (err, candidates) =
|
let (err, candidates) =
|
||||||
this.smart_resolve_report_errors(path, path_span, source, res);
|
this.smart_resolve_report_errors(path, path, path_span, source, res);
|
||||||
|
|
||||||
let def_id = this.parent_scope.module.nearest_parent_mod();
|
let def_id = this.parent_scope.module.nearest_parent_mod();
|
||||||
let instead = res.is_some();
|
let instead = res.is_some();
|
||||||
@ -3556,12 +3556,13 @@ fn smart_resolve_path_fragment(
|
|||||||
_ => return Some(parent_err),
|
_ => return Some(parent_err),
|
||||||
};
|
};
|
||||||
|
|
||||||
let (mut err, mut candidates) =
|
let (mut err, candidates) = this.smart_resolve_report_errors(
|
||||||
this.smart_resolve_report_errors(prefix_path, path_span, PathSource::Type, None);
|
prefix_path,
|
||||||
|
path,
|
||||||
if candidates.is_empty() {
|
path_span,
|
||||||
candidates = this.smart_resolve_partial_mod_path_errors(prefix_path, path);
|
PathSource::Type,
|
||||||
}
|
None,
|
||||||
|
);
|
||||||
|
|
||||||
// There are two different error messages user might receive at
|
// There are two different error messages user might receive at
|
||||||
// this point:
|
// this point:
|
||||||
|
@ -334,16 +334,36 @@ pub(crate) fn smart_resolve_partial_mod_path_errors(
|
|||||||
prefix_path: &[Segment],
|
prefix_path: &[Segment],
|
||||||
path: &[Segment],
|
path: &[Segment],
|
||||||
) -> Vec<ImportSuggestion> {
|
) -> Vec<ImportSuggestion> {
|
||||||
if path.len() <= 1 {
|
let next_seg = if path.len() >= prefix_path.len() + 1 && prefix_path.len() == 1 {
|
||||||
return Vec::new();
|
path.get(prefix_path.len())
|
||||||
|
} else {
|
||||||
|
None
|
||||||
|
};
|
||||||
|
if let Some(segment) = prefix_path.last() &&
|
||||||
|
let Some(next_seg) = next_seg {
|
||||||
|
let candidates = self.r.lookup_import_candidates(
|
||||||
|
segment.ident,
|
||||||
|
Namespace::TypeNS,
|
||||||
|
&self.parent_scope,
|
||||||
|
&|res: Res| matches!(res, Res::Def(DefKind::Mod, _)),
|
||||||
|
);
|
||||||
|
// double check next seg is valid
|
||||||
|
candidates
|
||||||
|
.into_iter()
|
||||||
|
.filter(|candidate| {
|
||||||
|
if let Some(def_id) = candidate.did &&
|
||||||
|
let Some(module) = self.r.get_module(def_id) {
|
||||||
|
self.r.resolutions(module).borrow().iter().any(|(key, _r)| {
|
||||||
|
key.ident.name == next_seg.ident.name
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.collect::<Vec<_>>()
|
||||||
|
} else {
|
||||||
|
Vec::new()
|
||||||
}
|
}
|
||||||
let ident = prefix_path.last().unwrap().ident;
|
|
||||||
self.r.lookup_import_candidates(
|
|
||||||
ident,
|
|
||||||
Namespace::TypeNS,
|
|
||||||
&self.parent_scope,
|
|
||||||
&|res: Res| matches!(res, Res::Def(DefKind::Mod, _)),
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handles error reporting for `smart_resolve_path_fragment` function.
|
/// Handles error reporting for `smart_resolve_path_fragment` function.
|
||||||
@ -351,6 +371,7 @@ pub(crate) fn smart_resolve_partial_mod_path_errors(
|
|||||||
pub(crate) fn smart_resolve_report_errors(
|
pub(crate) fn smart_resolve_report_errors(
|
||||||
&mut self,
|
&mut self,
|
||||||
path: &[Segment],
|
path: &[Segment],
|
||||||
|
full_path: &[Segment],
|
||||||
span: Span,
|
span: Span,
|
||||||
source: PathSource<'_>,
|
source: PathSource<'_>,
|
||||||
res: Option<Res>,
|
res: Option<Res>,
|
||||||
@ -392,7 +413,7 @@ pub(crate) fn smart_resolve_report_errors(
|
|||||||
}
|
}
|
||||||
|
|
||||||
let (found, candidates) =
|
let (found, candidates) =
|
||||||
self.try_lookup_name_relaxed(&mut err, source, path, span, res, &base_error);
|
self.try_lookup_name_relaxed(&mut err, source, path, full_path, span, res, &base_error);
|
||||||
if found {
|
if found {
|
||||||
return (err, candidates);
|
return (err, candidates);
|
||||||
}
|
}
|
||||||
@ -498,6 +519,7 @@ fn try_lookup_name_relaxed(
|
|||||||
err: &mut Diagnostic,
|
err: &mut Diagnostic,
|
||||||
source: PathSource<'_>,
|
source: PathSource<'_>,
|
||||||
path: &[Segment],
|
path: &[Segment],
|
||||||
|
full_path: &[Segment],
|
||||||
span: Span,
|
span: Span,
|
||||||
res: Option<Res>,
|
res: Option<Res>,
|
||||||
base_error: &BaseError,
|
base_error: &BaseError,
|
||||||
@ -667,6 +689,10 @@ fn try_lookup_name_relaxed(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if candidates.is_empty() {
|
||||||
|
candidates = self.smart_resolve_partial_mod_path_errors(path, full_path);
|
||||||
|
}
|
||||||
|
|
||||||
return (false, candidates);
|
return (false, candidates);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,15 +13,6 @@ 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
|
= help: consider adding `extern crate core` to use the `core` crate
|
||||||
help: consider importing this module
|
|
||||||
|
|
|
||||||
LL + use std::default;
|
|
||||||
|
|
|
||||||
help: if you import `default`, refer to it directly
|
|
||||||
|
|
|
||||||
LL - let _: u8 = ::core::default::Default();
|
|
||||||
LL + let _: u8 = default::Default();
|
|
||||||
|
|
|
||||||
|
|
||||||
error: aborting due to 2 previous errors
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
|
@ -24,8 +24,6 @@ LL | fn f() { my_core::mem::drop(0); }
|
|||||||
LL | a!();
|
LL | a!();
|
||||||
| ---- in this macro invocation
|
| ---- in this macro invocation
|
||||||
|
|
|
|
||||||
= help: consider importing this module:
|
|
||||||
my_core::mem
|
|
||||||
= note: this error originates in the macro `a` (in Nightly builds, run with -Z macro-backtrace for more info)
|
= note: this error originates in the macro `a` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||||
|
|
||||||
error[E0433]: failed to resolve: use of undeclared crate or module `my_core`
|
error[E0433]: failed to resolve: use of undeclared crate or module `my_core`
|
||||||
@ -33,16 +31,6 @@ error[E0433]: failed to resolve: use of undeclared crate or module `my_core`
|
|||||||
|
|
|
|
||||||
LL | fn f() { my_core::mem::drop(0); }
|
LL | fn f() { my_core::mem::drop(0); }
|
||||||
| ^^^^^^^ use of undeclared crate or module `my_core`
|
| ^^^^^^^ use of undeclared crate or module `my_core`
|
||||||
|
|
|
||||||
help: consider importing this module
|
|
||||||
|
|
|
||||||
LL + use my_core::mem;
|
|
||||||
|
|
|
||||||
help: if you import `mem`, refer to it directly
|
|
||||||
|
|
|
||||||
LL - fn f() { my_core::mem::drop(0); }
|
|
||||||
LL + fn f() { mem::drop(0); }
|
|
||||||
|
|
|
||||||
|
|
||||||
error: aborting due to 4 previous errors
|
error: aborting due to 4 previous errors
|
||||||
|
|
||||||
|
@ -21,27 +21,17 @@ error: unexpected `const` parameter declaration
|
|||||||
LL | path::path::Struct::<const N: usize>()
|
LL | path::path::Struct::<const N: usize>()
|
||||||
| ^^^^^^^^^^^^^^ expected a `const` expression, not a parameter declaration
|
| ^^^^^^^^^^^^^^ expected a `const` expression, not a parameter declaration
|
||||||
|
|
||||||
error[E0412]: cannot find type `T` in this scope
|
|
||||||
--> $DIR/const-param-decl-on-type-instead-of-impl.rs:8:15
|
|
||||||
|
|
|
||||||
LL | fn banana(a: <T<const N: usize>>::BAR) {}
|
|
||||||
| ^ not found in this scope
|
|
||||||
|
|
||||||
error[E0433]: failed to resolve: use of undeclared crate or module `path`
|
error[E0433]: failed to resolve: use of undeclared crate or module `path`
|
||||||
--> $DIR/const-param-decl-on-type-instead-of-impl.rs:12:5
|
--> $DIR/const-param-decl-on-type-instead-of-impl.rs:12:5
|
||||||
|
|
|
|
||||||
LL | path::path::Struct::<const N: usize>()
|
LL | path::path::Struct::<const N: usize>()
|
||||||
| ^^^^ use of undeclared crate or module `path`
|
| ^^^^ use of undeclared crate or module `path`
|
||||||
|
|
||||||
|
error[E0412]: cannot find type `T` in this scope
|
||||||
|
--> $DIR/const-param-decl-on-type-instead-of-impl.rs:8:15
|
||||||
|
|
|
|
||||||
help: consider importing this module
|
LL | fn banana(a: <T<const N: usize>>::BAR) {}
|
||||||
|
|
| ^ not found in this scope
|
||||||
LL + use std::path;
|
|
||||||
|
|
|
||||||
help: if you import `path`, refer to it directly
|
|
||||||
|
|
|
||||||
LL - path::path::Struct::<const N: usize>()
|
|
||||||
LL + path::Struct::<const N: usize>()
|
|
||||||
|
|
|
||||||
|
|
||||||
error[E0308]: mismatched types
|
error[E0308]: mismatched types
|
||||||
--> $DIR/const-param-decl-on-type-instead-of-impl.rs:5:17
|
--> $DIR/const-param-decl-on-type-instead-of-impl.rs:5:17
|
||||||
|
13
tests/ui/resolve/export-fully-qualified-2018.rs
Normal file
13
tests/ui/resolve/export-fully-qualified-2018.rs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
// edition:2018
|
||||||
|
|
||||||
|
// In this test baz isn't resolved when called as foo.baz even though
|
||||||
|
// it's called from inside foo. This is somewhat surprising and may
|
||||||
|
// want to change eventually.
|
||||||
|
|
||||||
|
mod foo {
|
||||||
|
pub fn bar() { foo::baz(); } //~ ERROR failed to resolve: use of undeclared crate or module `foo`
|
||||||
|
|
||||||
|
fn baz() { }
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() { }
|
14
tests/ui/resolve/export-fully-qualified-2018.stderr
Normal file
14
tests/ui/resolve/export-fully-qualified-2018.stderr
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
error[E0433]: failed to resolve: use of undeclared crate or module `foo`
|
||||||
|
--> $DIR/export-fully-qualified-2018.rs:8:20
|
||||||
|
|
|
||||||
|
LL | pub fn bar() { foo::baz(); }
|
||||||
|
| ^^^ use of undeclared crate or module `foo`
|
||||||
|
|
|
||||||
|
help: consider importing this module
|
||||||
|
|
|
||||||
|
LL + use crate::foo;
|
||||||
|
|
|
||||||
|
|
||||||
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0433`.
|
@ -1,3 +1,5 @@
|
|||||||
|
// edition:2015
|
||||||
|
|
||||||
// In this test baz isn't resolved when called as foo.baz even though
|
// In this test baz isn't resolved when called as foo.baz even though
|
||||||
// it's called from inside foo. This is somewhat surprising and may
|
// it's called from inside foo. This is somewhat surprising and may
|
||||||
// want to change eventually.
|
// want to change eventually.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
error[E0433]: failed to resolve: use of undeclared crate or module `foo`
|
error[E0433]: failed to resolve: use of undeclared crate or module `foo`
|
||||||
--> $DIR/export-fully-qualified.rs:6:20
|
--> $DIR/export-fully-qualified.rs:8:20
|
||||||
|
|
|
|
||||||
LL | pub fn bar() { foo::baz(); }
|
LL | pub fn bar() { foo::baz(); }
|
||||||
| ^^^ use of undeclared crate or module `foo`
|
| ^^^ use of undeclared crate or module `foo`
|
||||||
|
@ -20,6 +20,17 @@ help: there is a crate or module with a similar name
|
|||||||
LL | use bar::bar;
|
LL | use bar::bar;
|
||||||
| ~~~
|
| ~~~
|
||||||
|
|
||||||
|
error[E0433]: failed to resolve: use of undeclared crate or module `st`
|
||||||
|
--> $DIR/crate-or-module-typo.rs:14:10
|
||||||
|
|
|
||||||
|
LL | bar: st::cell::Cell<bool>
|
||||||
|
| ^^ use of undeclared crate or module `st`
|
||||||
|
|
|
||||||
|
help: there is a crate or module with a similar name
|
||||||
|
|
|
||||||
|
LL | bar: std::cell::Cell<bool>
|
||||||
|
| ~~~
|
||||||
|
|
||||||
error[E0433]: failed to resolve: use of undeclared crate or module `bar`
|
error[E0433]: failed to resolve: use of undeclared crate or module `bar`
|
||||||
--> $DIR/crate-or-module-typo.rs:6:20
|
--> $DIR/crate-or-module-typo.rs:6:20
|
||||||
|
|
|
|
||||||
@ -31,28 +42,6 @@ help: consider importing this module
|
|||||||
LL + use crate::bar;
|
LL + use crate::bar;
|
||||||
|
|
|
|
||||||
|
|
||||||
error[E0433]: failed to resolve: use of undeclared crate or module `st`
|
|
||||||
--> $DIR/crate-or-module-typo.rs:14:10
|
|
||||||
|
|
|
||||||
LL | bar: st::cell::Cell<bool>
|
|
||||||
| ^^ use of undeclared crate or module `st`
|
|
||||||
|
|
|
||||||
help: there is a crate or module with a similar name
|
|
||||||
|
|
|
||||||
LL | bar: std::cell::Cell<bool>
|
|
||||||
| ~~~
|
|
||||||
help: consider importing one of these items
|
|
||||||
|
|
|
||||||
LL + use core::cell;
|
|
||||||
|
|
|
||||||
LL + use std::cell;
|
|
||||||
|
|
|
||||||
help: if you import `cell`, refer to it directly
|
|
||||||
|
|
|
||||||
LL - bar: st::cell::Cell<bool>
|
|
||||||
LL + bar: cell::Cell<bool>
|
|
||||||
|
|
|
||||||
|
|
||||||
error: aborting due to 4 previous errors
|
error: aborting due to 4 previous errors
|
||||||
|
|
||||||
Some errors have detailed explanations: E0432, E0433.
|
Some errors have detailed explanations: E0432, E0433.
|
||||||
|
10
tests/ui/suggestions/issue-112590-suggest-import.rs
Normal file
10
tests/ui/suggestions/issue-112590-suggest-import.rs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
pub struct S;
|
||||||
|
|
||||||
|
impl fmt::Debug for S { //~ ERROR failed to resolve: use of undeclared crate or module `fmt`
|
||||||
|
fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result { //~ ERROR failed to resolve: use of undeclared crate or module `fmt`
|
||||||
|
//~^ ERROR failed to resolve: use of undeclared crate or module `fmt`
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() { }
|
36
tests/ui/suggestions/issue-112590-suggest-import.stderr
Normal file
36
tests/ui/suggestions/issue-112590-suggest-import.stderr
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
|
||||||
|
--> $DIR/issue-112590-suggest-import.rs:3:6
|
||||||
|
|
|
||||||
|
LL | impl fmt::Debug for S {
|
||||||
|
| ^^^ use of undeclared crate or module `fmt`
|
||||||
|
|
|
||||||
|
help: consider importing this module
|
||||||
|
|
|
||||||
|
LL + use std::fmt;
|
||||||
|
|
|
||||||
|
|
||||||
|
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
|
||||||
|
--> $DIR/issue-112590-suggest-import.rs:4:28
|
||||||
|
|
|
||||||
|
LL | fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
| ^^^ use of undeclared crate or module `fmt`
|
||||||
|
|
|
||||||
|
help: consider importing this module
|
||||||
|
|
|
||||||
|
LL + use std::fmt;
|
||||||
|
|
|
||||||
|
|
||||||
|
error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
|
||||||
|
--> $DIR/issue-112590-suggest-import.rs:4:51
|
||||||
|
|
|
||||||
|
LL | fn fmt(&self, _f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
|
| ^^^ use of undeclared crate or module `fmt`
|
||||||
|
|
|
||||||
|
help: consider importing this module
|
||||||
|
|
|
||||||
|
LL + use std::fmt;
|
||||||
|
|
|
||||||
|
|
||||||
|
error: aborting due to 3 previous errors
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0433`.
|
Loading…
Reference in New Issue
Block a user