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

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

10 lines
201 B
Rust
Raw Permalink Normal View History

2022-07-27 11:43:46 +00:00
//@ check-pass
#![feature(type_alias_impl_trait)]
type Opq = impl Sized;
#[define_opaque(Opq)]
2022-07-27 11:43:46 +00:00
fn test() -> impl Iterator<Item = Opq> {
Box::new(0..) as Box<dyn Iterator<Item = _>>
}
fn main() {}