]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/mutable-alias-vec.rs
test: Make manual changes to deal with the fallout from removal of
[rust.git] / src / test / run-pass / mutable-alias-vec.rs
index eb236b29263bcb85368350d8ce87c9cb1b369213..28dd89edd629d79d758dc2c49bc5090342be3bc7 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-fn grow(v: &mut Vec<int>) {
+fn grow(v: &mut Vec<int> ) {
     v.push(1);
 }