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

上级 a9ab2e55
// 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() {}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册