about summary refs log tree commit diff
path: root/tests/ui/iterators/fold-iterator-error-23966.rs
blob: 970c943da0b920ba22ed2f38829c8fa4ee3d766e (plain)
1
2
3
4
5
// https://github.com/rust-lang/rust/issues/23966
fn main() {
    "".chars().fold(|_, _| (), ());
    //~^ ERROR E0277
}