diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2014-12-03 10:09:53 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2014-12-13 17:03:45 -0500 |
| commit | a50c587242903f5c3d69e3684c8a79d3dcd849b7 (patch) | |
| tree | db69bba7476587b962dd563083c9acdde93d12fc /src/libcoretest | |
| parent | 7e3493e5e3a0cc7b4c99f36865305b241ff993d0 (diff) | |
| download | rust-a50c587242903f5c3d69e3684c8a79d3dcd849b7.tar.gz rust-a50c587242903f5c3d69e3684c8a79d3dcd849b7.zip | |
libcoretest: fix fallout
Diffstat (limited to 'src/libcoretest')
| -rw-r--r-- | src/libcoretest/iter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcoretest/iter.rs b/src/libcoretest/iter.rs index d046faa82d4..acc2eab60e7 100644 --- a/src/libcoretest/iter.rs +++ b/src/libcoretest/iter.rs @@ -221,7 +221,7 @@ fn test_iterator_flat_map() { #[test] fn test_inspect() { let xs = [1u, 2, 3, 4]; - let mut n = 0; + let mut n = 0u; let ys = xs.iter() .map(|&x| x) |
