Skip to content

Commit 630a95c

Browse files
authored
Unrolled build for rust-lang#132207
Rollup merge of rust-lang#132207 - compiler-errors:tweak-res-mod-segment, r=petrochenkov Store resolution for self and crate root module segments Let's make sure to record the segment resolution for `self::`, `crate::` and `$crate::`. I'm actually somewhat surprised that the only diagnostic that uses this is the one that errors on invalid generics on a module segment... but seems strictly more correct regardless, and there may be other diagnostics using these segments resolutions that just haven't been tested for `self`. Also includes a drive-by on `report_prohibit_generics_error`.
2 parents 318f96a + b33a0d3 commit 630a95c

File tree

6 files changed

+65
-9
lines changed

6 files changed

+65
-9
lines changed

compiler/rustc_hir_analysis/src/hir_ty_lowering/errors.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
11061106
.collect::<String>()
11071107
),
11081108
[(only, _)] => only.to_string(),
1109-
[] => "this type".to_string(),
1109+
[] => bug!("expected one segment to deny"),
11101110
};
11111111

11121112
let arg_spans: Vec<Span> = segments
@@ -1136,7 +1136,7 @@ impl<'tcx> dyn HirTyLowerer<'tcx> + '_ {
11361136
"s",
11371137
),
11381138
[only] => (only.to_string(), ""),
1139-
[] => unreachable!("expected at least one generic to prohibit"),
1139+
[] => bug!("expected at least one generic to prohibit"),
11401140
};
11411141
let last_span = *arg_spans.last().unwrap();
11421142
let span: MultiSpan = arg_spans.into();

compiler/rustc_resolve/src/ident.rs

+10-4
Original file line numberDiff line numberDiff line change
@@ -1478,9 +1478,11 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
14781478
if segment_idx == 0 {
14791479
if name == kw::SelfLower {
14801480
let mut ctxt = ident.span.ctxt().normalize_to_macros_2_0();
1481-
module = Some(ModuleOrUniformRoot::Module(
1482-
self.resolve_self(&mut ctxt, parent_scope.module),
1483-
));
1481+
let self_mod = self.resolve_self(&mut ctxt, parent_scope.module);
1482+
if let Some(res) = self_mod.res() {
1483+
record_segment_res(self, res);
1484+
}
1485+
module = Some(ModuleOrUniformRoot::Module(self_mod));
14841486
continue;
14851487
}
14861488
if name == kw::PathRoot && ident.span.at_least_rust_2018() {
@@ -1497,7 +1499,11 @@ impl<'ra, 'tcx> Resolver<'ra, 'tcx> {
14971499
}
14981500
if name == kw::PathRoot || name == kw::Crate || name == kw::DollarCrate {
14991501
// `::a::b`, `crate::a::b` or `$crate::a::b`
1500-
module = Some(ModuleOrUniformRoot::Module(self.resolve_crate_root(ident)));
1502+
let crate_root = self.resolve_crate_root(ident);
1503+
if let Some(res) = crate_root.res() {
1504+
record_segment_res(self, res);
1505+
}
1506+
module = Some(ModuleOrUniformRoot::Module(crate_root));
15011507
continue;
15021508
}
15031509
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
struct Ty;
2+
3+
fn self_(_: self::<i32>::Ty) {}
4+
//~^ ERROR type arguments are not allowed on module `generics_on_self_mod_segment`
5+
6+
fn crate_(_: crate::<i32>::Ty) {}
7+
//~^ ERROR type arguments are not allowed on module `generics_on_self_mod_segment`
8+
9+
macro_rules! dollar_crate {
10+
() => {
11+
fn dollar_crate_(_: $crate::<i32>::Ty) {}
12+
//~^ ERROR type arguments are not allowed on module `generics_on_self_mod_segment`
13+
}
14+
}
15+
16+
dollar_crate!();
17+
18+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
error[E0109]: type arguments are not allowed on module `generics_on_self_mod_segment`
2+
--> $DIR/generics-on-self-mod-segment.rs:3:20
3+
|
4+
LL | fn self_(_: self::<i32>::Ty) {}
5+
| ---- ^^^ type argument not allowed
6+
| |
7+
| not allowed on module `generics_on_self_mod_segment`
8+
9+
error[E0109]: type arguments are not allowed on module `generics_on_self_mod_segment`
10+
--> $DIR/generics-on-self-mod-segment.rs:6:22
11+
|
12+
LL | fn crate_(_: crate::<i32>::Ty) {}
13+
| ----- ^^^ type argument not allowed
14+
| |
15+
| not allowed on module `generics_on_self_mod_segment`
16+
17+
error[E0109]: type arguments are not allowed on module `generics_on_self_mod_segment`
18+
--> $DIR/generics-on-self-mod-segment.rs:11:38
19+
|
20+
LL | fn dollar_crate_(_: $crate::<i32>::Ty) {}
21+
| ------ ^^^ type argument not allowed
22+
| |
23+
| not allowed on module `generics_on_self_mod_segment`
24+
...
25+
LL | dollar_crate!();
26+
| --------------- in this macro invocation
27+
|
28+
= note: this error originates in the macro `dollar_crate` (in Nightly builds, run with -Z macro-backtrace for more info)
29+
30+
error: aborting due to 3 previous errors
31+
32+
For more information about this error, try `rustc --explain E0109`.
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
trait Trait {}
22

33
fn test<T: ?self::<i32>::Trait>() {}
4-
//~^ ERROR type arguments are not allowed on this type
4+
//~^ ERROR type arguments are not allowed on module `maybe_bound_has_path_args`
55
//~| WARN relaxing a default bound only does something for `?Sized`
66

77
fn main() {}

tests/ui/trait-bounds/maybe-bound-has-path-args.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ warning: relaxing a default bound only does something for `?Sized`; all other tr
44
LL | fn test<T: ?self::<i32>::Trait>() {}
55
| ^^^^^^^^^^^^^^^^^^^
66

7-
error[E0109]: type arguments are not allowed on this type
7+
error[E0109]: type arguments are not allowed on module `maybe_bound_has_path_args`
88
--> $DIR/maybe-bound-has-path-args.rs:3:20
99
|
1010
LL | fn test<T: ?self::<i32>::Trait>() {}
1111
| ---- ^^^ type argument not allowed
1212
| |
13-
| not allowed on this type
13+
| not allowed on module `maybe_bound_has_path_args`
1414

1515
error: aborting due to 1 previous error; 1 warning emitted
1616

0 commit comments

Comments
 (0)