1
Fork 0

Rollup merge of #103704 - xxchan:xxchan/applicable-bug, r=compiler-errors

Add a test for TAIT used with impl/dyn Trait inside RPIT

close https://github.com/rust-lang/rust/issues/101750
This commit is contained in:
Matthias Krüger 2022-10-29 08:57:37 +02:00 committed by GitHub
commit cc8040e734
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,37 @@
#![feature(type_alias_impl_trait)]
// check-pass
trait Trait {}
type TAIT = impl Trait;
struct Concrete;
impl Trait for Concrete {}
fn tait() -> TAIT {
Concrete
}
trait OuterTrait {
type Item;
}
struct Dummy<T> {
t: T,
}
impl<T> OuterTrait for Dummy<T> {
type Item = T;
}
fn tait_and_impl_trait() -> impl OuterTrait<Item = (TAIT, impl Trait)> {
Dummy {
t: (tait(), Concrete),
}
}
fn tait_and_dyn_trait() -> impl OuterTrait<Item = (TAIT, Box<dyn Trait>)> {
let b: Box<dyn Trait> = Box::new(Concrete);
Dummy { t: (tait(), b) }
}
fn main() {}