rust/tests/ui/impl-trait/closure-in-impl-trait-arg.rs

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

8 lines
147 B
Rust
Raw Normal View History

2020-10-04 18:19:58 -05:00
// run-pass
#![allow(unused_must_use)]
fn bug(_: impl Iterator<Item = [(); { |x: u32| { x }; 4 }]>) {}
fn main() {
bug(std::iter::empty());
}