Change from core::ops::RangeFull to std::ops

This commit is contained in:
Nick Cameron 2015-01-28 18:16:00 +13:00
parent bf2b473816
commit 023d49e347
6 changed files with 9 additions and 9 deletions

View file

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use ::core::ops::RangeFull;
use ::std::ops::RangeFull;
fn test<T : Clone>(arg: T) -> T {
arg.clone()