mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
177 B
Rust
9 lines
177 B
Rust
|
// 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(){}
|