]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
Auto merge of #49896 - SimonSapin:inherent, r=alexcrichton
[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(ascii_ctype)]
12 #![feature(box_syntax)]
13 #![feature(core_float)]
14 #![feature(core_private_bignum)]
15 #![feature(core_private_diy_float)]
16 #![feature(dec2flt)]
17 #![feature(decode_utf8)]
18 #![feature(exact_size_is_empty)]
19 #![feature(fixed_size_array)]
20 #![feature(float_internals)]
21 #![feature(flt2dec)]
22 #![feature(fmt_internals)]
23 #![feature(hashmap_internals)]
24 #![feature(iterator_step_by)]
25 #![feature(iterator_flatten)]
26 #![feature(iterator_repeat_with)]
27 #![feature(nonzero)]
28 #![feature(pattern)]
29 #![feature(range_is_empty)]
30 #![feature(raw)]
31 #![feature(refcell_replace_swap)]
32 #![feature(slice_patterns)]
33 #![feature(slice_rotate)]
34 #![feature(sort_internals)]
35 #![feature(specialization)]
36 #![feature(step_trait)]
37 #![feature(str_internals)]
38 #![feature(test)]
39 #![feature(trusted_len)]
40 #![feature(try_from)]
41 #![feature(try_trait)]
42 #![feature(exact_chunks)]
43 #![cfg_attr(stage0, feature(atomic_nand))]
44 #![feature(reverse_bits)]
45 #![feature(inclusive_range_fields)]
46 #![feature(iterator_find_map)]
47
48 extern crate core;
49 extern crate test;
50 extern crate rand;
51
52 mod any;
53 mod array;
54 mod ascii;
55 mod atomic;
56 mod cell;
57 mod char;
58 mod clone;
59 mod cmp;
60 mod fmt;
61 mod hash;
62 mod intrinsics;
63 mod iter;
64 mod mem;
65 mod nonzero;
66 mod num;
67 mod ops;
68 mod option;
69 mod pattern;
70 mod ptr;
71 mod result;
72 mod slice;
73 mod str;
74 mod str_lossy;
75 mod tuple;