rust/tests/ui/iterators/invalid-iterator-chain-with-int-infer.rs

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

5 lines
177 B
Rust
Raw Normal View History

fn main() {
let x = Some(()).iter().map(|()| 1).sum::<f32>();
//~^ ERROR a value of type `f32` cannot be made by summing an iterator over elements of type `{integer}`
}