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