rust/tests/ui/on-unimplemented/sum.rs

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

10 lines
179 B
Rust
Raw Normal View History

// <https://github.com/rust-lang/rust/issues/105184>
fn main() {
vec![(), ()].iter().sum::<i32>();
//~^ ERROR
vec![(), ()].iter().product::<i32>();
//~^ ERROR
}