1 2 3 4 5 6 7 8
// check-pass #![feature(type_alias_impl_trait)] type Opq = impl Sized; fn test() -> impl Iterator<Item = Opq> { Box::new(0..) as Box<dyn Iterator<Item = _>> } fn main(){}