]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/type-annotations-needed-expr.rs
Rollup merge of #106323 - starkat99:stabilize-f16c_target_feature, r=petrochenkov
[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 }