Skip to content

Commit f718480

Browse files
committed
Fix ICE in eval_body_using_ecx
Return`Err` instead of `assert`ing when layout is not sized.
1 parent c0ddaef commit f718480

File tree

3 files changed

+46
-3
lines changed

3 files changed

+46
-3
lines changed

compiler/rustc_const_eval/src/const_eval/eval_queries.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rustc_middle::mir::interpret::{AllocId, ErrorHandled, InterpErrorInfo};
77
use rustc_middle::mir::{self, ConstAlloc, ConstValue};
88
use rustc_middle::query::TyCtxtAt;
99
use rustc_middle::traits::Reveal;
10-
use rustc_middle::ty::layout::LayoutOf;
10+
use rustc_middle::ty::layout::{LayoutError, LayoutOf};
1111
use rustc_middle::ty::print::with_no_trimmed_paths;
1212
use rustc_middle::ty::{self, Ty, TyCtxt};
1313
use rustc_span::def_id::LocalDefId;
@@ -49,8 +49,12 @@ fn eval_body_using_ecx<'mir, 'tcx, R: InterpretationResult<'tcx>>(
4949
"Unexpected DefKind: {:?}",
5050
ecx.tcx.def_kind(cid.instance.def_id())
5151
);
52-
let layout = ecx.layout_of(body.bound_return_ty().instantiate(tcx, cid.instance.args))?;
53-
assert!(layout.is_sized());
52+
53+
let body_ty = body.bound_return_ty().instantiate(tcx, cid.instance.args);
54+
let layout = ecx.layout_of(body_ty)?;
55+
if !layout.is_sized() {
56+
return Err((err_inval!(Layout(LayoutError::Unknown(body_ty)))).into());
57+
}
5458

5559
let intern_kind = if cid.promoted.is_some() {
5660
InternKind::Promoted
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Regression test for #123154
2+
3+
struct AA {
4+
pub data: [&usize]
5+
//~^ ERROR missing lifetime specifier
6+
}
7+
8+
impl AA {
9+
const fn new() -> Self { }
10+
//~^ ERROR mismatched types
11+
}
12+
13+
static ST: AA = AA::new();
14+
15+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
error[E0106]: missing lifetime specifier
2+
--> $DIR/ice-unsized-struct-const-eval-123154.rs:4:16
3+
|
4+
LL | pub data: [&usize]
5+
| ^ expected named lifetime parameter
6+
|
7+
help: consider introducing a named lifetime parameter
8+
|
9+
LL ~ struct AA<'a> {
10+
LL ~ pub data: [&'a usize]
11+
|
12+
13+
error[E0308]: mismatched types
14+
--> $DIR/ice-unsized-struct-const-eval-123154.rs:9:23
15+
|
16+
LL | const fn new() -> Self { }
17+
| --- ^^^^ expected `AA`, found `()`
18+
| |
19+
| implicitly returns `()` as its body has no tail or `return` expression
20+
21+
error: aborting due to 2 previous errors
22+
23+
Some errors have detailed explanations: E0106, E0308.
24+
For more information about an error, try `rustc --explain E0106`.

0 commit comments

Comments
 (0)