diff options
| author | Nick Cameron <ncameron@mozilla.com> | 2015-01-28 18:16:00 +1300 |
|---|---|---|
| committer | Nick Cameron <ncameron@mozilla.com> | 2015-01-30 12:01:08 +1300 |
| commit | 023d49e347e9d155a8a713d40f63329902ad249d (patch) | |
| tree | a294cae94105e7b8e58aca04ad9034d1b2053697 /src/libcoretest | |
| parent | bf2b4738163b196685198e91d7ce4e2761bb718e (diff) | |
| download | rust-023d49e347e9d155a8a713d40f63329902ad249d.tar.gz rust-023d49e347e9d155a8a713d40f63329902ad249d.zip | |
Change from core::ops::RangeFull to std::ops
Diffstat (limited to 'src/libcoretest')
| -rw-r--r-- | src/libcoretest/ops.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcoretest/ops.rs b/src/libcoretest/ops.rs index 430188c7e43..3da572f65a6 100644 --- a/src/libcoretest/ops.rs +++ b/src/libcoretest/ops.rs @@ -9,7 +9,7 @@ // except according to those terms. use test::Bencher; -use core::ops::{Range, FullRange, RangeFrom, RangeTo}; +use core::ops::{Range, RangeFull, RangeFrom, RangeTo}; // Overhead of dtors @@ -64,5 +64,5 @@ fn test_range_to() { #[test] fn test_full_range() { // Not much to test. - let _ = FullRange; + let _ = RangeFull; } |
