Skip to content

Commit b7e760a

Browse files
authored
Unrolled build for rust-lang#117371
Rollup merge of rust-lang#117371 - compiler-errors:unique-params, r=oli-obk Ignore RPIT duplicated lifetimes in `opaque_types_defined_by` An RPIT's or TAIT's own generics are kinda useless -- so just ignore them. For TAITs, they will always be empty, and for RPITs, they're always duplicated lifetimes. Fixes rust-lang#115013.
2 parents 91bbdd9 + c561325 commit b7e760a

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

compiler/rustc_middle/src/ty/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ impl<'tcx> TyCtxt<'tcx> {
460460
/// Checks whether each generic argument is simply a unique generic parameter.
461461
pub fn uses_unique_generic_params(
462462
self,
463-
args: GenericArgsRef<'tcx>,
463+
args: &[ty::GenericArg<'tcx>],
464464
ignore_regions: CheckRegions,
465465
) -> Result<(), NotUniqueParam<'tcx>> {
466466
let mut seen = GrowableBitSet::default();

compiler/rustc_ty_utils/src/opaque_types.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,14 @@ impl<'tcx> TypeVisitor<TyCtxt<'tcx>> for OpaqueTypeCollector<'tcx> {
154154

155155
self.opaques.push(alias_ty.def_id.expect_local());
156156

157-
match self.tcx.uses_unique_generic_params(alias_ty.args, CheckRegions::Bound) {
157+
let parent_count = self.tcx.generics_of(alias_ty.def_id).parent_count;
158+
// Only check that the parent generics of the TAIT/RPIT are unique.
159+
// the args owned by the opaque are going to always be duplicate
160+
// lifetime params for RPITs, and empty for TAITs.
161+
match self
162+
.tcx
163+
.uses_unique_generic_params(&alias_ty.args[..parent_count], CheckRegions::Bound)
164+
{
158165
Ok(()) => {
159166
// FIXME: implement higher kinded lifetime bounds on nested opaque types. They are not
160167
// supported at all, so this is sound to do, but once we want to support them, you'll
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// check-pass
2+
3+
#![feature(type_alias_impl_trait)]
4+
5+
type Opaque<'lt> = impl Sized + 'lt;
6+
7+
fn test<'a>(
8+
arg: impl Iterator<Item = &'a u8>,
9+
) -> impl Iterator<Item = Opaque<'a>> {
10+
arg
11+
}
12+
13+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// check-pass
2+
// edition: 2021
3+
4+
#![feature(type_alias_impl_trait)]
5+
6+
struct Foo<'a>(&'a ());
7+
8+
impl<'a> Foo<'a> {
9+
async fn new() -> () {
10+
type T = impl Sized;
11+
let _: T = ();
12+
}
13+
}
14+
15+
fn main() {}

0 commit comments

Comments
 (0)