Test use of impl Trait in an impl as the value for an associated type in an impl trait

This commit is contained in:
Santiago Pastorino 2021-08-20 18:06:31 -03:00
parent a9ab2e5539
commit dcfff23c27
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF

View file

@ -0,0 +1,19 @@
// check-pass
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]
type Foo = impl Iterator<Item = impl Send>;
fn make_foo() -> Foo {
vec![1, 2].into_iter()
}
type Bar = impl Send;
type Baz = impl Iterator<Item = Bar>;
fn make_baz() -> Baz {
vec!["1", "2"].into_iter()
}
fn main() {}