1
Fork 0

Fix vec test compile error.

This commit is contained in:
Scott Olson 2016-03-21 02:41:07 -06:00
parent 6f2e50caea
commit 27e82b60b0

View file

@ -3,7 +3,7 @@
#[miri_run]
fn make_vec() -> Vec<i32> {
let v = Vec::with_capacity(4);
let mut v = Vec::with_capacity(4);
v.push(1);
v.push(2);
v