Skip to content

Commit fe548e3

Browse files
committed
resolve: Fix some more asserts in import validation
1 parent e593431 commit fe548e3

File tree

4 files changed

+63
-26
lines changed

4 files changed

+63
-26
lines changed

src/librustc_resolve/resolve_imports.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,8 @@ impl<'a, 'b:'a, 'c: 'b> ImportResolver<'a, 'b, 'c> {
864864
}
865865
PathResult::NonModule(path_res) if path_res.base_def() == Def::Err => {
866866
// The error was already reported earlier.
867-
assert!(directive.imported_module.get().is_none());
867+
assert!(!self.ambiguity_errors.is_empty() ||
868+
directive.imported_module.get().is_none());
868869
return None;
869870
}
870871
PathResult::Indeterminate | PathResult::NonModule(..) => unreachable!(),

src/test/ui/imports/auxiliary/issue-56125.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
pub mod issue_56125 {}
2+
13
pub mod last_segment {
24
pub mod issue_56125 {}
35
}

src/test/ui/imports/issue-56125.rs

+19-6
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,24 @@
22
// compile-flags:--extern issue_56125
33
// aux-build:issue-56125.rs
44

5-
use issue_56125::last_segment::*;
6-
//~^ ERROR `issue_56125` is ambiguous
7-
//~| ERROR unresolved import `issue_56125::last_segment`
8-
use issue_56125::non_last_segment::non_last_segment::*;
9-
//~^ ERROR `issue_56125` is ambiguous
10-
//~| ERROR failed to resolve: could not find `non_last_segment` in `issue_56125`
5+
#![feature(uniform_paths)]
6+
7+
mod m1 {
8+
use issue_56125::last_segment::*;
9+
//~^ ERROR `issue_56125` is ambiguous
10+
//~| ERROR unresolved import `issue_56125::last_segment`
11+
}
12+
13+
mod m2 {
14+
use issue_56125::non_last_segment::non_last_segment::*;
15+
//~^ ERROR `issue_56125` is ambiguous
16+
//~| ERROR failed to resolve: could not find `non_last_segment` in `issue_56125`
17+
}
18+
19+
mod m3 {
20+
mod empty {}
21+
use empty::issue_56125; //~ ERROR unresolved import `empty::issue_56125`
22+
use issue_56125::*; //~ ERROR `issue_56125` is ambiguous
23+
}
1124

1225
fn main() {}
+40-19
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,67 @@
11
error[E0433]: failed to resolve: could not find `non_last_segment` in `issue_56125`
2-
--> $DIR/issue-56125.rs:8:18
2+
--> $DIR/issue-56125.rs:14:22
33
|
4-
LL | use issue_56125::non_last_segment::non_last_segment::*;
5-
| ^^^^^^^^^^^^^^^^ could not find `non_last_segment` in `issue_56125`
4+
LL | use issue_56125::non_last_segment::non_last_segment::*;
5+
| ^^^^^^^^^^^^^^^^ could not find `non_last_segment` in `issue_56125`
66

77
error[E0432]: unresolved import `issue_56125::last_segment`
8-
--> $DIR/issue-56125.rs:5:18
8+
--> $DIR/issue-56125.rs:8:22
99
|
10-
LL | use issue_56125::last_segment::*;
11-
| ^^^^^^^^^^^^ could not find `last_segment` in `issue_56125`
10+
LL | use issue_56125::last_segment::*;
11+
| ^^^^^^^^^^^^ could not find `last_segment` in `issue_56125`
12+
13+
error[E0432]: unresolved import `empty::issue_56125`
14+
--> $DIR/issue-56125.rs:21:9
15+
|
16+
LL | use empty::issue_56125; //~ ERROR unresolved import `empty::issue_56125`
17+
| ^^^^^^^^^^^^^^^^^^ no `issue_56125` in `m3::empty`
1218

1319
error[E0659]: `issue_56125` is ambiguous (name vs any other name during import resolution)
14-
--> $DIR/issue-56125.rs:5:5
20+
--> $DIR/issue-56125.rs:8:9
1521
|
16-
LL | use issue_56125::last_segment::*;
17-
| ^^^^^^^^^^^ ambiguous name
22+
LL | use issue_56125::last_segment::*;
23+
| ^^^^^^^^^^^ ambiguous name
1824
|
1925
= note: `issue_56125` could refer to an extern crate passed with `--extern`
2026
= help: use `::issue_56125` to refer to this extern crate unambiguously
2127
note: `issue_56125` could also refer to the module imported here
22-
--> $DIR/issue-56125.rs:5:5
28+
--> $DIR/issue-56125.rs:8:9
2329
|
24-
LL | use issue_56125::last_segment::*;
25-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30+
LL | use issue_56125::last_segment::*;
31+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2632
= help: use `self::issue_56125` to refer to this module unambiguously
2733

2834
error[E0659]: `issue_56125` is ambiguous (name vs any other name during import resolution)
29-
--> $DIR/issue-56125.rs:8:5
35+
--> $DIR/issue-56125.rs:14:9
3036
|
31-
LL | use issue_56125::non_last_segment::non_last_segment::*;
32-
| ^^^^^^^^^^^ ambiguous name
37+
LL | use issue_56125::non_last_segment::non_last_segment::*;
38+
| ^^^^^^^^^^^ ambiguous name
3339
|
3440
= note: `issue_56125` could refer to an extern crate passed with `--extern`
3541
= help: use `::issue_56125` to refer to this extern crate unambiguously
3642
note: `issue_56125` could also refer to the module imported here
37-
--> $DIR/issue-56125.rs:5:5
43+
--> $DIR/issue-56125.rs:14:9
3844
|
39-
LL | use issue_56125::last_segment::*;
40-
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
45+
LL | use issue_56125::non_last_segment::non_last_segment::*;
46+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4147
= help: use `self::issue_56125` to refer to this module unambiguously
4248

43-
error: aborting due to 4 previous errors
49+
error[E0659]: `issue_56125` is ambiguous (name vs any other name during import resolution)
50+
--> $DIR/issue-56125.rs:22:9
51+
|
52+
LL | use issue_56125::*; //~ ERROR `issue_56125` is ambiguous
53+
| ^^^^^^^^^^^ ambiguous name
54+
|
55+
= note: `issue_56125` could refer to an extern crate passed with `--extern`
56+
= help: use `::issue_56125` to refer to this extern crate unambiguously
57+
note: `issue_56125` could also refer to the unresolved item imported here
58+
--> $DIR/issue-56125.rs:21:9
59+
|
60+
LL | use empty::issue_56125; //~ ERROR unresolved import `empty::issue_56125`
61+
| ^^^^^^^^^^^^^^^^^^
62+
= help: use `self::issue_56125` to refer to this unresolved item unambiguously
63+
64+
error: aborting due to 6 previous errors
4465

4566
Some errors occurred: E0432, E0433, E0659.
4667
For more information about an error, try `rustc --explain E0432`.

0 commit comments

Comments
 (0)