1
Fork 0

Fix typo in test name.

This commit is contained in:
Scott Olson 2016-03-21 04:12:07 -06:00
parent 3fc9b7dd2c
commit 11c78fbdc8

View file

@ -20,6 +20,6 @@ fn make_vec_macro_repeat() -> Vec<u8> {
}
#[miri_run]
fn vec_int_iter() -> i32 {
fn vec_into_iter() -> i32 {
vec![1, 2, 3, 4].into_iter().fold(0, |x, y| x + y)
}