blob: 3cfce459e37dc8b6c5f62b7aca8b0d1ca25f8c1b [file] [log] [blame]
// run-pass
#![allow(unused_must_use)]
fn bug(_: impl Iterator<Item = [(); { |x: u32| { x }; 4 }]>) {}
fn main() {
bug(std::iter::empty());
}