]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/type-annotations-needed-expr.rs
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / span / type-annotations-needed-expr.rs
1 fn main() {
2     let _ = (vec![1,2,3]).into_iter().sum() as f64; //~ ERROR E0282
3 }