// Copyright 2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![feature(box_syntax)] #![feature(cell_update)] #![feature(core_private_bignum)] #![feature(core_private_diy_float)] #![feature(dec2flt)] #![feature(euclidean_division)] #![feature(exact_size_is_empty)] #![feature(fixed_size_array)] #![feature(flt2dec)] #![feature(fmt_internals)] #![feature(hashmap_internals)] #![feature(pattern)] #![feature(range_is_empty)] #![feature(raw)] #![feature(refcell_map_split)] #![feature(refcell_replace_swap)] #![feature(slice_patterns)] #![feature(sort_internals)] #![feature(specialization)] #![feature(step_trait)] #![feature(str_internals)] #![feature(test)] #![feature(trusted_len)] #![feature(try_from)] #![feature(try_trait)] #![feature(exact_chunks)] #![feature(align_offset)] #![feature(reverse_bits)] #![feature(inner_deref)] #![feature(slice_internals)] #![feature(option_replace)] #![feature(copy_within)] extern crate core; extern crate test; extern crate rand; mod any; mod array; mod ascii; mod atomic; mod cell; mod char; mod clone; mod cmp; mod fmt; mod hash; mod intrinsics; mod iter; mod manually_drop; mod mem; mod nonzero; mod num; mod ops; mod option; mod pattern; mod ptr; mod result; mod slice; mod str; mod str_lossy; mod time; mod tuple;