summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-66923-show-error-for-correct-call.rs
blob: 8332807397247eae743200724c9043fe65ab7284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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);
}