Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
iterators
/
fold-iterator-error-23966.rs
blob: 970c943da0b920ba22ed2f38829c8fa4ee3d766e [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/23966
fn
main
()
{
""
.
chars
().
fold
(|
_
,
_
|
(),
());
//~^ ERROR E0277
}