]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
affcdbea9d34292c46b0ef9c224bc1bf80f76f41
[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(rchunks)]
38 #![feature(align_offset)]
39 #![feature(reverse_bits)]
40 #![feature(inner_deref)]
41 #![feature(slice_internals)]
42 #![feature(slice_partition_dedup)]
43 #![feature(copy_within)]
44
45 extern crate core;
46 extern crate test;
47 extern crate rand;
48
49 mod any;
50 mod array;
51 mod ascii;
52 mod atomic;
53 mod cell;
54 mod char;
55 mod clone;
56 mod cmp;
57 mod fmt;
58 mod hash;
59 mod intrinsics;
60 mod iter;
61 mod manually_drop;
62 mod mem;
63 mod nonzero;
64 mod num;
65 mod ops;
66 mod option;
67 mod pattern;
68 mod ptr;
69 mod result;
70 mod slice;
71 mod str;
72 mod str_lossy;
73 mod time;
74 mod tuple;