mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
410 B
Rust
15 lines
410 B
Rust
// 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);
|
|
}
|