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