Skip to content

Commit

Permalink
Add some GATs related regression tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnTitor committed Oct 15, 2021
1 parent af9b508 commit a51798a
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/test/ui/generic-associated-types/issue-88287.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// check-pass
// edition:2018

#![feature(generic_associated_types)]
#![feature(type_alias_impl_trait)]

use std::future::Future;

trait SearchableResource<Criteria> {
type SearchResult;
}

trait SearchableResourceExt<Criteria>: SearchableResource<Criteria> {
type Future<'f, A: 'f + ?Sized, B: 'f>: Future<Output = Result<Vec<A::SearchResult>, ()>> + 'f
where
A: SearchableResource<B>;

fn search<'c>(&'c self, client: &'c ()) -> Self::Future<'c, Self, Criteria>;
}

type SearchFutureTy<'f, A, B: 'f>
where
A: SearchableResource<B> + ?Sized + 'f,
= impl Future<Output = Result<Vec<A::SearchResult>, ()>> + 'f;
impl<T, Criteria> SearchableResourceExt<Criteria> for T
where
T: SearchableResource<Criteria>,
{
type Future<'f, A, B: 'f>
where
A: SearchableResource<B> + ?Sized + 'f,
= SearchFutureTy<'f, A, B>;

fn search<'c>(&'c self, _client: &'c ()) -> Self::Future<'c, Self, Criteria> {
async move { todo!() }
}
}

fn main() {}
16 changes: 16 additions & 0 deletions src/test/ui/generic-associated-types/issue-88405.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// check-pass

#![feature(generic_associated_types)]

trait SomeTrait {}
trait OtherTrait {
type Item;
}

trait ErrorSimpleExample {
type AssociatedType: SomeTrait;
type GatBounded<T: SomeTrait>;
type ErrorMinimal: OtherTrait<Item = Self::GatBounded<Self::AssociatedType>>;
}

fn main() {}

0 comments on commit a51798a

Please sign in to comment.