about summary refs log tree commit diff
path: root/src/liballoc/tests
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-05-01 10:10:46 +0000
committerbors <bors@rust-lang.org>2018-05-01 10:10:46 +0000
commita4a79472598e24a60301fb99f27dc688cc365d5a (patch)
treefe68f488a9b19bccc2845870fe40286543c6aaa0 /src/liballoc/tests
parent0eb68b797b2d2d2ae20093b824f69fe817c96ed1 (diff)
parentf70b2ebd08f47c504681ca5f62c3ccdacdd69763 (diff)
downloadrust-a4a79472598e24a60301fb99f27dc688cc365d5a.tar.gz
rust-a4a79472598e24a60301fb99f27dc688cc365d5a.zip
Auto merge of #49724 - kennytm:range-inc-start-end-methods, r=Kimundi
Introduce RangeInclusive::{new, start, end} methods and make the fields private.

cc #49022
Diffstat (limited to 'src/liballoc/tests')
-rw-r--r--src/liballoc/tests/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/tests/lib.rs b/src/liballoc/tests/lib.rs
index 32272169307..1c8ff316e55 100644
--- a/src/liballoc/tests/lib.rs
+++ b/src/liballoc/tests/lib.rs
@@ -25,7 +25,7 @@
 #![feature(try_reserve)]
 #![feature(unboxed_closures)]
 #![feature(exact_chunks)]
-#![feature(inclusive_range_fields)]
+#![feature(inclusive_range_methods)]
 
 extern crate alloc_system;
 extern crate core;