Skip to content

Commit ef3f2c0

Browse files
committed
Fix ICE in -Zsave-analysis
1 parent 9e2a6a2 commit ef3f2c0

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

src/librustc_save_analysis/lib.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,11 @@ impl<'l, 'tcx> SaveContext<'l, 'tcx> {
620620
}
621621

622622
pub fn get_path_res(&self, id: NodeId) -> Res {
623-
let hir_id = self.tcx.hir().node_id_to_hir_id(id);
623+
// FIXME(#71104)
624+
let hir_id = match self.tcx.hir().opt_node_id_to_hir_id(id) {
625+
Some(id) => id,
626+
None => return Res::Err,
627+
};
624628
match self.tcx.hir().get(hir_id) {
625629
Node::TraitRef(tr) => tr.path.res,
626630

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// compile-flags: -Z save-analysis
2+
3+
fn main() {
4+
let _: Box<(dyn ?Sized)>;
5+
//~^ ERROR `?Trait` is not permitted in trait object types
6+
//~| ERROR at least one trait is required for an object type
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
error: `?Trait` is not permitted in trait object types
2+
--> $DIR/issue-72267.rs:4:21
3+
|
4+
LL | let _: Box<(dyn ?Sized)>;
5+
| ^^^^^^
6+
7+
error[E0224]: at least one trait is required for an object type
8+
--> $DIR/issue-72267.rs:4:17
9+
|
10+
LL | let _: Box<(dyn ?Sized)>;
11+
| ^^^^^^^^^^
12+
13+
error: aborting due to 2 previous errors
14+
15+
For more information about this error, try `rustc --explain E0224`.

0 commit comments

Comments
 (0)