rust/tests/ui/impl-trait/issue-99642-2.rs

9 lines
177 B
Rust
Raw Normal View History

2022-07-27 06:43:46 -05:00
// 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(){}