]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
Merge branch 'refactor-select' of https://github.com/aravind-pg/rust into update...
[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(box_syntax)]
14 #![feature(core_float)]
15 #![feature(core_private_bignum)]
16 #![feature(core_private_diy_float)]
17 #![feature(dec2flt)]
18 #![feature(decode_utf8)]
19 #![feature(exact_size_is_empty)]
20 #![feature(fixed_size_array)]
21 #![feature(flt2dec)]
22 #![feature(fmt_internals)]
23 #![feature(iterator_step_by)]
24 #![feature(i128_type)]
25 #![feature(inclusive_range)]
26 #![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
51 extern crate core;
52 extern crate test;
53
54 mod any;
55 mod array;
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 tuple;