]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
Remove unnecessary or invalid feature attributes
[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(decode_utf8)]
17 #![feature(euclidean_division)]
18 #![feature(exact_size_is_empty)]
19 #![feature(fixed_size_array)]
20 #![feature(flt2dec)]
21 #![feature(fmt_internals)]
22 #![feature(hashmap_internals)]
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(slice_rotate)]
30 #![feature(sort_internals)]
31 #![feature(specialization)]
32 #![feature(step_trait)]
33 #![feature(str_internals)]
34 #![feature(test)]
35 #![feature(trusted_len)]
36 #![feature(try_from)]
37 #![feature(try_trait)]
38 #![feature(exact_chunks)]
39 #![feature(slice_align_to)]
40 #![feature(align_offset)]
41 #![feature(reverse_bits)]
42 #![feature(iterator_find_map)]
43 #![feature(inner_deref)]
44 #![feature(slice_internals)]
45 #![feature(option_replace)]
46
47 extern crate core;
48 extern crate test;
49 extern crate rand;
50
51 mod any;
52 mod array;
53 mod ascii;
54 mod atomic;
55 mod cell;
56 mod char;
57 mod clone;
58 mod cmp;
59 mod fmt;
60 mod hash;
61 mod intrinsics;
62 mod iter;
63 mod manually_drop;
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 time;
76 mod tuple;