Use absolute path to FullRange, rather than assuming it is in the prelude

Closes #21263

[breaking-change]

If you are using `core::ops::FullRange` you should change to using `core::ops::RangeFull`
This commit is contained in:
Nick Cameron
2015-01-28 14:27:28 +13:00
parent 7ea93abfb2
commit a9d465fec9
3 changed files with 66 additions and 53 deletions

View File

@@ -147,6 +147,7 @@ mod array;
mod core {
pub use panicking;
pub use fmt;
pub use ops;
}
#[doc(hidden)]