Skip to content

Commit b9a3c32

Browse files
Do not fail evaluation in const blocks
1 parent 22e491a commit b9a3c32

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

compiler/rustc_typeck/src/check/expr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
12261226
let body = self.tcx.hir().body(anon_const.body);
12271227

12281228
// Create a new function context.
1229-
let fcx = FnCtxt::new(self, self.param_env, body.value.hir_id);
1229+
let fcx = FnCtxt::new(self, self.param_env.with_const(), body.value.hir_id);
12301230
crate::check::GatherLocalsVisitor::new(&fcx).visit_body(body);
12311231

12321232
let ty = fcx.check_expr_with_expectation(&body.value, expected);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#![allow(unused)]
2+
#![feature(const_fn_trait_bound, const_trait_impl, inline_const)]
3+
4+
const fn f<T: ~const Drop>(x: T) {}
5+
6+
struct UnconstDrop;
7+
8+
impl Drop for UnconstDrop {
9+
fn drop(&mut self) {}
10+
}
11+
12+
fn main() {
13+
const {
14+
f(UnconstDrop);
15+
//~^ ERROR the trait bound `UnconstDrop: Drop` is not satisfied
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
error[E0277]: the trait bound `UnconstDrop: Drop` is not satisfied
2+
--> $DIR/const-block-const-bound.rs:14:11
3+
|
4+
LL | f(UnconstDrop);
5+
| - ^^^^^^^^^^^ the trait `Drop` is not implemented for `UnconstDrop`
6+
| |
7+
| required by a bound introduced by this call
8+
|
9+
note: required by a bound in `f`
10+
--> $DIR/const-block-const-bound.rs:4:15
11+
|
12+
LL | const fn f<T: ~const Drop>(x: T) {}
13+
| ^^^^^^^^^^^ required by this bound in `f`
14+
help: consider introducing a `where` bound, but there might be an alternative better way to express this requirement
15+
|
16+
LL | fn main() where UnconstDrop: Drop {
17+
| +++++++++++++++++++++++
18+
19+
error: aborting due to previous error
20+
21+
For more information about this error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)