]> git.lizzy.rs Git - rust.git/blob - tests/ui/span/type-annotations-needed-expr.rs
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[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 }