Skip to content

Commit 745361d

Browse files
authored
Rollup merge of rust-lang#107888 - lcnr:opaque-ty-validate, r=wesleywiser
revert rust-lang#107074, add regression test fixes rust-lang#107346
2 parents dfc2422 + 3a72238 commit 745361d

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

compiler/rustc_const_eval/src/transform/validate.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use rustc_middle::mir::{
1313
RetagKind, RuntimePhase, Rvalue, SourceScope, Statement, StatementKind, Terminator,
1414
TerminatorKind, UnOp, START_BLOCK,
1515
};
16-
use rustc_middle::ty::{self, InstanceDef, ParamEnv, Ty, TyCtxt};
16+
use rustc_middle::ty::{self, InstanceDef, ParamEnv, Ty, TyCtxt, TypeVisitable};
1717
use rustc_mir_dataflow::impls::MaybeStorageLive;
1818
use rustc_mir_dataflow::storage::always_storage_live_locals;
1919
use rustc_mir_dataflow::{Analysis, ResultsCursor};
@@ -231,6 +231,15 @@ impl<'a, 'tcx> TypeChecker<'a, 'tcx> {
231231
return true;
232232
}
233233

234+
// We sometimes have to use `defining_opaque_types` for subtyping
235+
// to succeed here and figuring out how exactly that should work
236+
// is annoying. It is harmless enough to just not validate anything
237+
// in that case. We still check this after analysis as all opque
238+
// types have been revealed at this point.
239+
if (src, dest).has_opaque_types() {
240+
return true;
241+
}
242+
234243
crate::util::is_subtype(self.tcx, self.param_env, src, dest)
235244
}
236245
}

tests/ui/impl-trait/nested-return-type2.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
// check-pass
2+
// compile-flags: -Zvalidate-mir
3+
4+
// Using -Zvalidate-mir as a regression test for #107346.
25

36
trait Duh {}
47

tests/ui/impl-trait/nested-return-type2.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
warning: opaque type `impl Trait<Assoc = impl Send>` does not satisfy its associated type bounds
2-
--> $DIR/nested-return-type2.rs:25:24
2+
--> $DIR/nested-return-type2.rs:28:24
33
|
44
LL | type Assoc: Duh;
55
| --- this associated type bound is unsatisfied for `impl Send`

0 commit comments

Comments
 (0)