From f019b6c5e8f2bb7e5985ea595b0946479c5aa4c2 Mon Sep 17 00:00:00 2001 From: Deadbeef Date: Mon, 22 Aug 2022 11:28:01 +0000 Subject: [PATCH] Overhaul 100222 test; wf always remap to nonconst --- compiler/rustc_typeck/src/check/wfcheck.rs | 21 +++++-------------- .../rfc-2632-const-trait-impl/issue-100222.rs | 21 +++++++++++++++---- 2 files changed, 22 insertions(+), 20 deletions(-) diff --git a/compiler/rustc_typeck/src/check/wfcheck.rs b/compiler/rustc_typeck/src/check/wfcheck.rs index 4938181eea7..9e39abe9aa5 100644 --- a/compiler/rustc_typeck/src/check/wfcheck.rs +++ b/compiler/rustc_typeck/src/check/wfcheck.rs @@ -66,15 +66,11 @@ fn register_wf_obligation( span: Span, loc: Option, arg: ty::GenericArg<'tcx>, - override_constness: Option, ) { let cause = traits::ObligationCause::new(span, self.body_id, ObligationCauseCode::WellFormed(loc)); - let param_env = if let Some(constness) = override_constness { - self.param_env.with_constness(constness) - } else { - self.param_env - }; + // for a type to be WF, we do not need to check if const trait predicates satisfy. + let param_env = self.param_env.without_const(); self.ocx.register_obligation(traits::Obligation::new( cause, param_env, @@ -991,7 +987,7 @@ fn check_associated_item( ty::AssocKind::Const => { let ty = tcx.type_of(item.def_id); let ty = wfcx.normalize(span, Some(WellFormedLoc::Ty(item_id)), ty); - wfcx.register_wf_obligation(span, loc, ty.into(), None); + wfcx.register_wf_obligation(span, loc, ty.into()); } ty::AssocKind::Fn => { let sig = tcx.fn_sig(item.def_id); @@ -1012,7 +1008,7 @@ fn check_associated_item( if item.defaultness(tcx).has_value() { let ty = tcx.type_of(item.def_id); let ty = wfcx.normalize(span, Some(WellFormedLoc::Ty(item_id)), ty); - wfcx.register_wf_obligation(span, loc, ty.into(), None); + wfcx.register_wf_obligation(span, loc, ty.into()); } } } @@ -1048,7 +1044,6 @@ fn check_type_defn<'tcx, F>( field.span, Some(WellFormedLoc::Ty(field.def_id)), field.ty.into(), - None, ) } @@ -1202,7 +1197,6 @@ fn check_item_type(tcx: TyCtxt<'_>, item_id: LocalDefId, ty_span: Span, allow_fo ty_span, Some(WellFormedLoc::Ty(item_id)), item_ty.into(), - None, ); if forbid_unsized { wfcx.register_bound( @@ -1272,7 +1266,6 @@ fn check_impl<'tcx>( ast_self_ty.span, Some(WellFormedLoc::Ty(item.hir_id().expect_owner())), self_ty.into(), - None, ); } } @@ -1317,7 +1310,6 @@ fn check_where_clauses<'tcx>(wfcx: &WfCheckingCtxt<'_, 'tcx>, span: Span, def_id tcx.def_span(param.def_id), None, ty.into(), - None, ); } } @@ -1334,7 +1326,6 @@ fn check_where_clauses<'tcx>(wfcx: &WfCheckingCtxt<'_, 'tcx>, span: Span, def_id tcx.def_span(param.def_id), None, default_ct.into(), - None, ); } } @@ -1463,7 +1454,7 @@ fn visit_const(&mut self, c: ty::Const<'tcx>) -> ControlFlow { assert_eq!(predicates.predicates.len(), predicates.spans.len()); let wf_obligations = iter::zip(&predicates.predicates, &predicates.spans).flat_map(|(&p, &sp)| { - traits::wf::predicate_obligations(infcx, wfcx.param_env, wfcx.body_id, p, sp) + traits::wf::predicate_obligations(infcx, wfcx.param_env.without_const(), wfcx.body_id, p, sp) }); let obligations: Vec<_> = wf_obligations.chain(default_obligations).collect(); @@ -1515,7 +1506,6 @@ fn check_fn_or_method<'tcx>( ty.span, Some(WellFormedLoc::Param { function: def_id, param_idx: i.try_into().unwrap() }), input_ty.into(), - None, ); } @@ -1523,7 +1513,6 @@ fn check_fn_or_method<'tcx>( hir_decl.output.span(), None, sig.output().into(), - Some(hir::Constness::NotConst), ); check_where_clauses(wfcx, span, def_id); diff --git a/src/test/ui/rfc-2632-const-trait-impl/issue-100222.rs b/src/test/ui/rfc-2632-const-trait-impl/issue-100222.rs index 40517ecdd6c..2db5595a5ae 100644 --- a/src/test/ui/rfc-2632-const-trait-impl/issue-100222.rs +++ b/src/test/ui/rfc-2632-const-trait-impl/issue-100222.rs @@ -1,14 +1,27 @@ +// revisions: nn ny yn yy // check-pass -#![feature(const_trait_impl)] +#![feature(const_trait_impl, associated_type_defaults, const_mut_refs)] -#[const_trait] +#[cfg_attr(any(yn, yy), const_trait)] pub trait Index { type Output; } -#[const_trait] +#[cfg_attr(any(ny, yy), const_trait)] pub trait IndexMut where Self: Index { - fn foo(&mut self) -> ::Output; + const C: ::Output; + type Assoc = ::Output; + fn foo(&mut self, x: ::Output) -> ::Output; } +impl Index for () { type Output = (); } + +impl const IndexMut for <() as Index>::Output { + const C: ::Output = (); + type Assoc = ::Output; + fn foo(&mut self, x: ::Output) -> ::Output where ::Output: {} +} + +const C: <() as Index>::Output = (); + fn main() {} -- 2.44.0