Skip to content

Commit a1f91aa

Browse files
committed
Use a const ParamEnv when in default_method_body_is_const
1 parent 9b45f04 commit a1f91aa

File tree

3 files changed

+43
-1
lines changed

3 files changed

+43
-1
lines changed

compiler/rustc_ty_utils/src/ty.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use rustc_hir as hir;
33
use rustc_hir::def_id::{DefId, LocalDefId};
44
use rustc_middle::ty::subst::Subst;
55
use rustc_middle::ty::{self, Binder, Predicate, PredicateKind, ToPredicate, Ty, TyCtxt};
6-
use rustc_span::Span;
6+
use rustc_span::{sym, Span};
77
use rustc_trait_selection::traits;
88

99
fn sized_constraint_for_ty<'tcx>(
@@ -285,6 +285,12 @@ fn param_env(tcx: TyCtxt<'_>, def_id: DefId) -> ty::ParamEnv<'_> {
285285

286286
let constness = match hir_id {
287287
Some(hir_id) => match tcx.hir().get(hir_id) {
288+
hir::Node::TraitItem(hir::TraitItem { kind: hir::TraitItemKind::Fn(..), .. })
289+
if tcx.has_attr(def_id, sym::default_method_body_is_const) =>
290+
{
291+
hir::Constness::Const
292+
}
293+
288294
hir::Node::Item(hir::Item { kind: hir::ItemKind::Const(..), .. })
289295
| hir::Node::Item(hir::Item { kind: hir::ItemKind::Static(..), .. })
290296
| hir::Node::TraitItem(hir::TraitItem {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#![feature(const_fn_trait_bound)]
2+
#![feature(const_trait_impl)]
3+
4+
trait Tr {}
5+
impl Tr for () {}
6+
7+
const fn foo<T>() where T: ~const Tr {}
8+
9+
pub trait Foo {
10+
#[default_method_body_is_const]
11+
fn foo() {
12+
foo::<()>();
13+
//~^ ERROR the trait bound `(): Tr` is not satisfied
14+
}
15+
}
16+
17+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error[E0277]: the trait bound `(): Tr` is not satisfied
2+
--> $DIR/default-method-body-is-const-body-checking.rs:12:15
3+
|
4+
LL | foo::<()>();
5+
| ^^ the trait `Tr` is not implemented for `()`
6+
|
7+
note: required by a bound in `foo`
8+
--> $DIR/default-method-body-is-const-body-checking.rs:7:28
9+
|
10+
LL | const fn foo<T>() where T: ~const Tr {}
11+
| ^^^^^^^^^ required by this bound in `foo`
12+
help: consider introducing a `where` bound, but there might be an alternative better way to express this requirement
13+
|
14+
LL | pub trait Foo where (): Tr {
15+
| ++++++++++++
16+
17+
error: aborting due to previous error
18+
19+
For more information about this error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)