Skip to content

Commit f55c125

Browse files
Feed parent hir id for Node::Synthetic
1 parent a3cfa03 commit f55c125

File tree

6 files changed

+65
-4
lines changed

6 files changed

+65
-4
lines changed

compiler/rustc_const_eval/src/interpret/intern.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ fn intern_as_new_static<'tcx>(
112112
feed.def_ident_span(tcx.def_ident_span(static_id));
113113
feed.explicit_predicates_of(tcx.explicit_predicates_of(static_id));
114114

115-
feed.feed_hir()
115+
feed.feed_hir(None);
116116
}
117117

118118
/// How a constant value should be interned.

compiler/rustc_middle/src/query/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ rustc_queries! {
186186
/// Avoid calling this query directly.
187187
query hir_owner_parent(key: hir::OwnerId) -> hir::HirId {
188188
desc { |tcx| "getting HIR parent of `{}`", tcx.def_path_str(key) }
189+
feedable
189190
}
190191

191192
/// Gives access to the HIR nodes and bodies inside `key` if it's a HIR owner.

compiler/rustc_middle/src/ty/context.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ impl<'tcx> TyCtxtFeed<'tcx, LocalDefId> {
599599
}
600600

601601
// Fills in all the important parts needed by HIR queries
602-
pub fn feed_hir(&self) {
602+
pub fn feed_hir(&self, parent_hir_id: Option<HirId>) {
603603
self.local_def_id_to_hir_id(HirId::make_owner(self.def_id()));
604604

605605
let node = hir::OwnerNode::Synthetic;
@@ -616,7 +616,11 @@ impl<'tcx> TyCtxtFeed<'tcx, LocalDefId> {
616616
),
617617
bodies,
618618
})));
619+
619620
self.feed_owner_id().hir_attrs(attrs);
621+
if let Some(parent) = parent_hir_id {
622+
self.feed_owner_id().hir_owner_parent(parent);
623+
}
620624
}
621625
}
622626

compiler/rustc_ty_utils/src/assoc.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,9 @@ fn associated_type_for_impl_trait_in_trait(
258258
let local_def_id = trait_assoc_ty.def_id();
259259
let def_id = local_def_id.to_def_id();
260260

261-
trait_assoc_ty.feed_hir();
261+
// Set the parent HIR for this item to be the `Node::Ty` of the `impl Trait` in trait.
262+
let parent_ty = tcx.parent_hir_id(tcx.local_def_id_to_hir_id(opaque_ty_def_id));
263+
trait_assoc_ty.feed_hir(Some(parent_ty));
262264

263265
// Copy span of the opaque.
264266
trait_assoc_ty.def_ident_span(Some(span));
@@ -312,7 +314,7 @@ fn associated_type_for_impl_trait_in_impl(
312314
let local_def_id = impl_assoc_ty.def_id();
313315
let def_id = local_def_id.to_def_id();
314316

315-
impl_assoc_ty.feed_hir();
317+
impl_assoc_ty.feed_hir(None);
316318

317319
// Copy span of the opaque.
318320
impl_assoc_ty.def_ident_span(Some(span));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Don't panic when iterating through the `hir::Map::parent_iter` of an RPITIT.
2+
3+
pub trait Foo<'a> {
4+
type Assoc;
5+
6+
fn demo() -> impl Foo
7+
//~^ ERROR missing lifetime specifier
8+
//~| ERROR the trait bound `String: Copy` is not satisfied
9+
where
10+
String: Copy;
11+
//~^ ERROR the trait bound `String: Copy` is not satisfied
12+
}
13+
14+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
error[E0106]: missing lifetime specifier
2+
--> $DIR/synthetic-hir-has-parent.rs:6:23
3+
|
4+
LL | fn demo() -> impl Foo
5+
| ^^^ expected named lifetime parameter
6+
|
7+
= help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
8+
help: consider using the `'a` lifetime
9+
|
10+
LL | fn demo() -> impl Foo<'a>
11+
| ++++
12+
13+
error[E0277]: the trait bound `String: Copy` is not satisfied
14+
--> $DIR/synthetic-hir-has-parent.rs:10:9
15+
|
16+
LL | String: Copy;
17+
| ^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
18+
|
19+
= help: see issue #48214
20+
help: add `#![feature(trivial_bounds)]` to the crate attributes to enable
21+
|
22+
LL + #![feature(trivial_bounds)]
23+
|
24+
25+
error[E0277]: the trait bound `String: Copy` is not satisfied
26+
--> $DIR/synthetic-hir-has-parent.rs:6:18
27+
|
28+
LL | fn demo() -> impl Foo
29+
| ^^^^^^^^ the trait `Copy` is not implemented for `String`
30+
|
31+
= help: see issue #48214
32+
help: add `#![feature(trivial_bounds)]` to the crate attributes to enable
33+
|
34+
LL + #![feature(trivial_bounds)]
35+
|
36+
37+
error: aborting due to 3 previous errors
38+
39+
Some errors have detailed explanations: E0106, E0277.
40+
For more information about an error, try `rustc --explain E0106`.

0 commit comments

Comments
 (0)