2021-07-26 15:01:16 -05:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2020-10-14 18:35:18 -05:00
|
|
|
|
|
|
|
type FooArg<'a> = &'a dyn ToString;
|
|
|
|
type FooRet = impl std::fmt::Debug;
|
|
|
|
|
|
|
|
type FooItem = Box<dyn Fn(FooArg) -> FooRet>;
|
2022-02-14 10:10:22 -06:00
|
|
|
type Foo = impl Iterator<Item = FooItem>;
|
2020-10-14 18:35:18 -05:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
struct Bar(u8);
|
|
|
|
|
|
|
|
impl Iterator for Bar {
|
|
|
|
type Item = FooItem;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
2022-05-27 14:31:10 -05:00
|
|
|
Some(Box::new(quux))
|
2020-10-14 18:35:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn quux(st: FooArg) -> FooRet {
|
|
|
|
Some(st.to_string())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ham() -> Foo {
|
|
|
|
Bar(1)
|
|
|
|
}
|
|
|
|
|
2023-06-15 04:41:14 -05:00
|
|
|
fn oof(_: Foo) -> impl std::fmt::Debug {
|
2020-10-14 18:35:18 -05:00
|
|
|
let mut bar = ham();
|
|
|
|
let func = bar.next().unwrap();
|
2022-02-17 07:28:06 -06:00
|
|
|
return func(&"oof"); //~ ERROR opaque type's hidden type cannot be another opaque type
|
2020-10-14 18:35:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2023-06-15 04:41:14 -05:00
|
|
|
let _ = oof(ham());
|
2020-10-14 18:35:18 -05:00
|
|
|
}
|