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