]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
e889d484353a586a78f8c6bdf2411ad52095efd8
[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(impl_header_lifetime_elision)]
23 #![feature(pattern)]
24 #![feature(range_is_empty)]
25 #![feature(raw)]
26 #![feature(refcell_map_split)]
27 #![feature(refcell_replace_swap)]
28 #![feature(slice_patterns)]
29 #![feature(sort_internals)]
30 #![feature(specialization)]
31 #![feature(step_trait)]
32 #![feature(str_internals)]
33 #![feature(test)]
34 #![feature(trusted_len)]
35 #![feature(try_from)]
36 #![feature(try_trait)]
37 #![feature(chunks_exact)]
38 #![feature(rchunks)]
39 #![feature(align_offset)]
40 #![feature(reverse_bits)]
41 #![feature(inner_deref)]
42 #![feature(slice_internals)]
43 #![feature(slice_partition_dedup)]
44 #![feature(copy_within)]
45
46 extern crate core;
47 extern crate test;
48 extern crate rand;
49
50 mod any;
51 mod array;
52 mod ascii;
53 mod atomic;
54 mod cell;
55 mod char;
56 mod clone;
57 mod cmp;
58 mod fmt;
59 mod hash;
60 mod intrinsics;
61 mod iter;
62 mod manually_drop;
63 mod mem;
64 mod nonzero;
65 mod num;
66 mod ops;
67 mod option;
68 mod pattern;
69 mod ptr;
70 mod result;
71 mod slice;
72 mod str;
73 mod str_lossy;
74 mod time;
75 mod tuple;