]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
Bump nightly to 1.32.0
[rust.git] / src / libcore / tests / lib.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(box_syntax)]
12 #![feature(cell_update)]
13 #![feature(core_private_bignum)]
14 #![feature(core_private_diy_float)]
15 #![feature(dec2flt)]
16 #![feature(euclidean_division)]
17 #![feature(exact_size_is_empty)]
18 #![feature(fixed_size_array)]
19 #![feature(flt2dec)]
20 #![feature(fmt_internals)]
21 #![feature(hashmap_internals)]
22 #![feature(pattern)]
23 #![feature(range_is_empty)]
24 #![feature(raw)]
25 #![feature(refcell_map_split)]
26 #![feature(refcell_replace_swap)]
27 #![feature(slice_patterns)]
28 #![feature(sort_internals)]
29 #![feature(specialization)]
30 #![feature(step_trait)]
31 #![feature(str_internals)]
32 #![feature(test)]
33 #![feature(trusted_len)]
34 #![feature(try_from)]
35 #![feature(try_trait)]
36 #![feature(align_offset)]
37 #![feature(reverse_bits)]
38 #![feature(inner_deref)]
39 #![feature(slice_internals)]
40 #![feature(slice_partition_dedup)]
41 #![feature(copy_within)]
42
43 extern crate core;
44 extern crate test;
45 extern crate rand;
46
47 mod any;
48 mod array;
49 mod ascii;
50 mod atomic;
51 mod cell;
52 mod char;
53 mod clone;
54 mod cmp;
55 mod fmt;
56 mod hash;
57 mod intrinsics;
58 mod iter;
59 mod manually_drop;
60 mod mem;
61 mod nonzero;
62 mod num;
63 mod ops;
64 mod option;
65 mod pattern;
66 mod ptr;
67 mod result;
68 mod slice;
69 mod str;
70 mod str_lossy;
71 mod time;
72 mod tuple;