blob: 8332807397247eae743200724c9043fe65ab7284 [file] [log] [blame]
// This test checks that errors are showed for lines with `collect` rather than `push` method.
fn main() {
let v = vec![1_f64, 2.2_f64];
let mut fft: Vec<Vec<f64>> = vec![];
let x1: &[f64] = &v;
let x2: Vec<f64> = x1.into_iter().collect();
//~^ ERROR a value of type
fft.push(x2);
let x3 = x1.into_iter().collect::<Vec<f64>>();
//~^ ERROR a value of type
fft.push(x3);
}