Skip to content

Commit 2d73597

Browse files
committed
Bail out of drop elaboration when encountering error types
1 parent 1280928 commit 2d73597

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

compiler/rustc_mir_dataflow/src/move_paths/builder.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use rustc_index::IndexVec;
22
use rustc_middle::mir::tcx::{PlaceTy, RvalueInitializationState};
33
use rustc_middle::mir::*;
4-
use rustc_middle::ty::{self, Ty, TyCtxt};
4+
use rustc_middle::ty::{self, Ty, TyCtxt, TypeVisitableExt};
55
use smallvec::{smallvec, SmallVec};
66

77
use std::mem;
@@ -132,6 +132,9 @@ impl<'b, 'a, 'tcx, F: Fn(Ty<'tcx>) -> bool> Gatherer<'b, 'a, 'tcx, F> {
132132
let body = self.builder.body;
133133
let tcx = self.builder.tcx;
134134
let place_ty = place_ref.ty(body, tcx).ty;
135+
if place_ty.references_error() {
136+
return MovePathResult::Error;
137+
}
135138
match elem {
136139
ProjectionElem::Deref => match place_ty.kind() {
137140
ty::Ref(..) | ty::RawPtr(..) => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// can't use build-fail, because this also fails check-fail, but
2+
// the ICE from #120787 only reproduces on build-fail.
3+
// compile-flags: --emit=mir
4+
5+
#![feature(type_alias_impl_trait)]
6+
7+
struct Foo {
8+
field: String,
9+
}
10+
11+
type Tait = impl Sized;
12+
13+
fn ice_cold(beverage: Tait) {
14+
let Foo { field } = beverage;
15+
_ = field;
16+
}
17+
18+
fn main() {
19+
Ok(()) //~ ERROR mismatched types
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/drop_elaboration_with_errors.rs:19:5
3+
|
4+
LL | fn main() {
5+
| - expected `()` because of default return type
6+
LL | Ok(())
7+
| ^^^^^^ expected `()`, found `Result<(), _>`
8+
|
9+
= note: expected unit type `()`
10+
found enum `Result<(), _>`
11+
12+
error: aborting due to 1 previous error
13+
14+
For more information about this error, try `rustc --explain E0308`.

0 commit comments

Comments
 (0)