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