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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
129 B
Rust
Raw Normal View History

2022-07-27 06:43:46 -05:00
//@ check-pass
fn test() -> impl Iterator<Item = impl Sized> {
Box::new(0..) as Box<dyn Iterator<Item = _>>
}
fn main() {}