blob: acbf3e3e2a024e2b7e0edacd573226b95727fec4 [file] [log] [blame]
//@ 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(){}