Skip to content

Commit a1e274f

Browse files
committed
revert #114586
1 parent 5d5edf0 commit a1e274f

File tree

9 files changed

+100
-84
lines changed

9 files changed

+100
-84
lines changed

compiler/rustc_borrowck/src/region_infer/opaque_types.rs

+13-20
Original file line numberDiff line numberDiff line change
@@ -328,26 +328,19 @@ fn check_opaque_type_well_formed<'tcx>(
328328

329329
// Require that the hidden type actually fulfills all the bounds of the opaque type, even without
330330
// the bounds that the function supplies.
331-
let mut obligations = vec![];
332-
infcx
333-
.insert_hidden_type(
334-
OpaqueTypeKey { def_id, args: identity_args },
335-
&ObligationCause::misc(definition_span, def_id),
336-
param_env,
337-
definition_ty,
338-
true,
339-
&mut obligations,
340-
)
341-
.unwrap();
342-
infcx.add_item_bounds_for_hidden_type(
343-
def_id.to_def_id(),
344-
identity_args,
345-
ObligationCause::misc(definition_span, def_id),
346-
param_env,
347-
definition_ty,
348-
&mut obligations,
349-
);
350-
ocx.register_obligations(obligations);
331+
let opaque_ty = Ty::new_opaque(tcx, def_id.to_def_id(), identity_args);
332+
ocx.eq(&ObligationCause::misc(definition_span, def_id), param_env, opaque_ty, definition_ty)
333+
.map_err(|err| {
334+
infcx
335+
.err_ctxt()
336+
.report_mismatched_types(
337+
&ObligationCause::misc(definition_span, def_id),
338+
opaque_ty,
339+
definition_ty,
340+
err,
341+
)
342+
.emit()
343+
})?;
351344

352345
// Require the hidden type to be well-formed with only the generics of the opaque type.
353346
// Defining use functions may have more bounds than the opaque type, which is ok, as long as the

compiler/rustc_infer/src/infer/opaque_types.rs

+1-19
Original file line numberDiff line numberDiff line change
@@ -145,25 +145,7 @@ impl<'tcx> InferCtxt<'tcx> {
145145
return None;
146146
}
147147
}
148-
DefiningAnchor::Bubble => {
149-
if let ty::Alias(ty::Opaque, _) = b.kind() {
150-
// In bubble mode we don't know which of the two opaque types is supposed to have the other
151-
// as a hidden type (both, none or either one of them could be in its defining scope).
152-
let predicate = ty::PredicateKind::AliasRelate(
153-
a.into(),
154-
b.into(),
155-
ty::AliasRelationDirection::Equate,
156-
);
157-
let obligation = traits::Obligation::new(
158-
self.tcx,
159-
cause.clone(),
160-
param_env,
161-
predicate,
162-
);
163-
let obligations = vec![obligation];
164-
return Some(Ok(InferOk { value: (), obligations }));
165-
}
166-
}
148+
DefiningAnchor::Bubble => {}
167149
DefiningAnchor::Error => return None,
168150
};
169151
if let ty::Alias(ty::Opaque, ty::AliasTy { def_id: b_def_id, .. }) = *b.kind() {

compiler/rustc_trait_selection/src/traits/fulfill.rs

+2-21
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ use rustc_infer::infer::DefineOpaqueTypes;
66
use rustc_infer::traits::ProjectionCacheKey;
77
use rustc_infer::traits::{PolyTraitObligation, SelectionError, TraitEngine};
88
use rustc_middle::mir::interpret::ErrorHandled;
9-
use rustc_middle::traits::DefiningAnchor;
109
use rustc_middle::ty::abstract_const::NotConstEvaluatable;
1110
use rustc_middle::ty::error::{ExpectedFound, TypeError};
1211
use rustc_middle::ty::GenericArgsRef;
@@ -626,27 +625,9 @@ impl<'a, 'tcx> ObligationProcessor for FulfillProcessor<'a, 'tcx> {
626625
}
627626
}
628627
ty::PredicateKind::Ambiguous => ProcessResult::Unchanged,
629-
ty::PredicateKind::AliasRelate(..)
630-
if matches!(self.selcx.infcx.defining_use_anchor, DefiningAnchor::Bubble) =>
631-
{
632-
ProcessResult::Unchanged
628+
ty::PredicateKind::AliasRelate(..) => {
629+
bug!("AliasRelate is only used for new solver")
633630
}
634-
ty::PredicateKind::AliasRelate(a, b, relate) => match relate {
635-
ty::AliasRelationDirection::Equate => match self
636-
.selcx
637-
.infcx
638-
.at(&obligation.cause, obligation.param_env)
639-
.eq(DefineOpaqueTypes::Yes, a, b)
640-
{
641-
Ok(inf_ok) => ProcessResult::Changed(mk_pending(inf_ok.into_obligations())),
642-
Err(_) => ProcessResult::Error(FulfillmentErrorCode::CodeSelectionError(
643-
SelectionError::Unimplemented,
644-
)),
645-
},
646-
ty::AliasRelationDirection::Subtype => {
647-
bug!("AliasRelate with subtyping is only used for new solver")
648-
}
649-
},
650631
ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(ct, ty)) => {
651632
match self.selcx.infcx.at(&obligation.cause, obligation.param_env).eq(
652633
DefineOpaqueTypes::No,

compiler/rustc_trait_selection/src/traits/select/mod.rs

+2-21
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ use rustc_infer::traits::TraitObligation;
3838
use rustc_middle::dep_graph::dep_kinds;
3939
use rustc_middle::dep_graph::DepNodeIndex;
4040
use rustc_middle::mir::interpret::ErrorHandled;
41-
use rustc_middle::traits::DefiningAnchor;
4241
use rustc_middle::ty::_match::MatchAgainstFreshVars;
4342
use rustc_middle::ty::abstract_const::NotConstEvaluatable;
4443
use rustc_middle::ty::fold::BottomUpFolder;
@@ -1005,27 +1004,9 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
10051004
}
10061005
}
10071006
}
1008-
ty::PredicateKind::AliasRelate(..)
1009-
if matches!(self.infcx.defining_use_anchor, DefiningAnchor::Bubble) =>
1010-
{
1011-
Ok(EvaluatedToAmbig)
1007+
ty::PredicateKind::AliasRelate(..) => {
1008+
bug!("AliasRelate is only used for new solver")
10121009
}
1013-
ty::PredicateKind::AliasRelate(a, b, relate) => match relate {
1014-
ty::AliasRelationDirection::Equate => match self
1015-
.infcx
1016-
.at(&obligation.cause, obligation.param_env)
1017-
.eq(DefineOpaqueTypes::Yes, a, b)
1018-
{
1019-
Ok(inf_ok) => self.evaluate_predicates_recursively(
1020-
previous_stack,
1021-
inf_ok.into_obligations(),
1022-
),
1023-
Err(_) => Ok(EvaluatedToErr),
1024-
},
1025-
ty::AliasRelationDirection::Subtype => {
1026-
bug!("AliasRelate subtyping is only used for new solver")
1027-
}
1028-
},
10291010
ty::PredicateKind::Ambiguous => Ok(EvaluatedToAmbig),
10301011
ty::PredicateKind::Clause(ty::ClauseKind::ConstArgHasType(ct, ty)) => {
10311012
match self.infcx.at(&obligation.cause, obligation.param_env).eq(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
error: internal compiler error: no errors encountered even though `delay_span_bug` issued
2+
3+
error: internal compiler error: {OpaqueTypeKey { def_id: DefId(rpit::{opaque#0}), args: [] }: OpaqueTypeDecl { hidden_type: OpaqueHiddenType { span: no-location (#0), ty: Alias(Opaque, AliasTy { args: [], def_id: DefId(foo::{opaque#0}) }) } }}
4+
|
5+
=
6+
7+
8+
error: internal compiler error: error performing ParamEnvAnd { param_env: ParamEnv { caller_bounds: [], reveal: UserFacing }, value: ProvePredicate { predicate: Binder { value: ProjectionPredicate(AliasTy { args: [FnDef(DefId(rpit), []), ()], def_id: DefId(ops::function::FnOnce::Output) }, Term::Ty(Alias(Opaque, AliasTy { args: [], def_id: DefId(foo::{opaque#0}) }))), bound_vars: [] } } }
9+
--> $DIR/equality-in-canonical-query.rs:19:5
10+
|
11+
LL | same_output(foo, rpit);
12+
| ^^^^^^^^^^^^^^^^^^^^^^
13+
|
14+
15+
--> $DIR/equality-in-canonical-query.rs:19:5
16+
|
17+
LL | same_output(foo, rpit);
18+
| ^^^^^^^^^^^^^^^^^^^^^^
19+
20+
21+
22+
23+
24+
25+
26+
query stack during panic:
27+
end of query stack
28+
error: aborting due to 3 previous errors
29+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// issue: #116877
2+
// revisions: sized clone
3+
//[sized] check-pass
4+
5+
//[clone] known-bug: #108498
6+
//[clone] failure-status: 101
7+
//[clone] normalize-stderr-test: "DefId\(.*?\]::" -> "DefId("
8+
//[clone] normalize-stderr-test: "(?m)note: .*$" -> ""
9+
//[clone] normalize-stderr-test: "(?m)^ *\d+: .*\n" -> ""
10+
//[clone] normalize-stderr-test: "(?m)^ *at .*\n" -> ""
11+
12+
#[cfg(sized)] fn rpit() -> impl Sized {}
13+
#[cfg(clone)] fn rpit() -> impl Clone {}
14+
15+
fn same_output<Out>(_: impl Fn() -> Out, _: impl Fn() -> Out) {}
16+
17+
pub fn foo() -> impl Sized {
18+
same_output(rpit, foo);
19+
same_output(foo, rpit);
20+
rpit()
21+
}
22+
23+
fn main () {}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
error: internal compiler error: no errors encountered even though `delay_span_bug` issued
22

3-
error: internal compiler error: ambiguity performing ParamEnvAnd { param_env: ParamEnv { caller_bounds: [], reveal: UserFacing }, value: ProvePredicate { predicate: Binder { value: ProjectionPredicate(AliasTy { args: [FnDef(DefId(get_rpit), []), ()], def_id: DefId(ops::function::FnOnce::Output) }, Term::Ty(Alias(Opaque, AliasTy { args: [], def_id: DefId(Opaque::{opaque#0}) }))), bound_vars: [] } } }
3+
error: internal compiler error: {OpaqueTypeKey { def_id: DefId(get_rpit::{opaque#0}), args: [] }: OpaqueTypeDecl { hidden_type: OpaqueHiddenType { span: no-location (#0), ty: Alias(Opaque, AliasTy { args: [], def_id: DefId(Opaque::{opaque#0}) }) } }}
4+
|
5+
=
6+
7+
8+
error: internal compiler error: error performing ParamEnvAnd { param_env: ParamEnv { caller_bounds: [], reveal: UserFacing }, value: ProvePredicate { predicate: Binder { value: ProjectionPredicate(AliasTy { args: [FnDef(DefId(get_rpit), []), ()], def_id: DefId(ops::function::FnOnce::Output) }, Term::Ty(Alias(Opaque, AliasTy { args: [], def_id: DefId(Opaque::{opaque#0}) }))), bound_vars: [] } } }
49
--> $DIR/rpit_tait_equality_in_canonical_query.rs:28:5
510
|
611
LL | query(get_rpit);
712
| ^^^^^^^^^^^^^^^
813
|
14+
915
--> $DIR/rpit_tait_equality_in_canonical_query.rs:28:5
1016
|
1117
LL | query(get_rpit);
@@ -14,7 +20,10 @@ LL | query(get_rpit);
1420

1521

1622

23+
24+
25+
1726
query stack during panic:
1827
end of query stack
19-
error: aborting due to 2 previous errors
28+
error: aborting due to 3 previous errors
2029

tests/ui/type-alias-impl-trait/rpit_tait_equality_in_canonical_query.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//[current] known-bug: #108498
1313
//[current] failure-status: 101
1414
//[current] normalize-stderr-test: "DefId\(.*?\]::" -> "DefId("
15-
//[current] normalize-stderr-test: "(?m)^note: .*\n" -> ""
15+
//[current] normalize-stderr-test: "(?m)note: .*$" -> ""
1616
//[current] normalize-stderr-test: "(?m)^ *\d+: .*\n" -> ""
1717
//[current] normalize-stderr-test: "(?m)^ *at .*\n" -> ""
1818

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// The canonical query `Projection(<get_rpit as FnOnce>::Output = Opaque)`
2+
// is the *only* site that defines `Opaque` in MIR typeck.
3+
//
4+
// check-pass
5+
6+
#![feature(type_alias_impl_trait)]
7+
8+
type Opaque = impl Sized;
9+
10+
fn get_rpit() -> impl Sized {}
11+
12+
fn query(_: impl FnOnce() -> Opaque) {}
13+
14+
fn test(_: Opaque) {
15+
query(get_rpit);
16+
}
17+
18+
fn main() {}

0 commit comments

Comments
 (0)