Sign in
fuchsia
/
third_party
/
rust
/
c8663eec6a667ae6e7571297cb15192425311c33
/
.
/
tests
/
ui
/
on-unimplemented
/
sum.rs
blob: 4f1c521d9fe8e6b156aeea9c291326b15e56878e [
file
] [
log
] [
blame
]
// <https://github.com/rust-lang/rust/issues/105184>
fn
main
()
{
vec
![(),
()].
iter
().
sum
::<
i32
>();
//~^ ERROR
vec
![(),
()].
iter
().
product
::<
i32
>();
//~^ ERROR
}