]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/iterators/collect-into-slice.rs
Better error messages when collecting into `[T; n]`
[rust.git] / src / test / ui / iterators / collect-into-slice.rs
index 905752dec7478749119da406f960da1469203698..aafa6bc8b951476245a47f487237e96baa4dc2e8 100644 (file)
@@ -6,7 +6,7 @@ fn process_slice(data: &[i32]) {
 fn main() {
     let some_generated_vec = (0..10).collect();
     //~^ ERROR the size for values of type `[i32]` cannot be known at compilation time
-    //~| ERROR a value of type `[i32]` cannot be built since `[i32]` has no definite size
+    //~| ERROR a slice of type `[i32]` cannot be built since `[i32]` has no definite size
     //~| NOTE try explicitly collecting into a `Vec<{integer}>`
     //~| NOTE required by a bound in `collect`
     //~| NOTE all local variables must have a statically known size