Skip to content

Commit 2901062

Browse files
Rollup merge of rust-lang#113171 - spastorino:new-rpitit-25, r=compiler-errors
Properly implement variances_of for RPITIT GAT This fixes some of the issues found by crater run in rust-lang#112988 (comment) r? `@compiler-errors`
2 parents 69e0d1d + a104063 commit 2901062

File tree

2 files changed

+34
-9
lines changed

2 files changed

+34
-9
lines changed

compiler/rustc_hir_analysis/src/variance/mod.rs

+15-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rustc_arena::DroplessArena;
77
use rustc_hir::def::DefKind;
88
use rustc_hir::def_id::{DefId, LocalDefId};
99
use rustc_middle::query::Providers;
10-
use rustc_middle::ty::{self, CrateVariancesMap, SubstsRef, Ty, TyCtxt};
10+
use rustc_middle::ty::{self, CrateVariancesMap, ImplTraitInTraitData, SubstsRef, Ty, TyCtxt};
1111
use rustc_middle::ty::{TypeSuperVisitable, TypeVisitable};
1212
use std::ops::ControlFlow;
1313

@@ -51,20 +51,26 @@ fn variances_of(tcx: TyCtxt<'_>, item_def_id: LocalDefId) -> &[ty::Variance] {
5151
| DefKind::Struct
5252
| DefKind::Union
5353
| DefKind::Variant
54-
| DefKind::Ctor(..) => {}
54+
| DefKind::Ctor(..) => {
55+
// These are inferred.
56+
let crate_map = tcx.crate_variances(());
57+
return crate_map.variances.get(&item_def_id.to_def_id()).copied().unwrap_or(&[]);
58+
}
5559
DefKind::OpaqueTy | DefKind::ImplTraitPlaceholder => {
5660
return variance_of_opaque(tcx, item_def_id);
5761
}
58-
_ => {
59-
// Variance not relevant.
60-
span_bug!(tcx.def_span(item_def_id), "asked to compute variance for wrong kind of item")
62+
DefKind::AssocTy => {
63+
if let Some(ImplTraitInTraitData::Trait { .. }) =
64+
tcx.opt_rpitit_info(item_def_id.to_def_id())
65+
{
66+
return variance_of_opaque(tcx, item_def_id);
67+
}
6168
}
69+
_ => {}
6270
}
6371

64-
// Everything else must be inferred.
65-
66-
let crate_map = tcx.crate_variances(());
67-
crate_map.variances.get(&item_def_id.to_def_id()).copied().unwrap_or(&[])
72+
// Variance not relevant.
73+
span_bug!(tcx.def_span(item_def_id), "asked to compute variance for wrong kind of item");
6874
}
6975

7076
#[instrument(level = "trace", skip(tcx), ret)]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// check-pass
2+
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
3+
// revisions: current next
4+
5+
#![feature(return_position_impl_trait_in_trait)]
6+
7+
trait Foo {}
8+
9+
impl Foo for () {}
10+
11+
trait ThreeCellFragment {
12+
fn ext_cells<'a>(&'a self) -> impl Foo + 'a {
13+
self.ext_adjacent_cells()
14+
}
15+
16+
fn ext_adjacent_cells<'a>(&'a self) -> impl Foo + 'a;
17+
}
18+
19+
fn main() {}

0 commit comments

Comments
 (0)