]> git.lizzy.rs Git - rust.git/blob - src/libcoretest/lib.rs
Auto merge of #31926 - llogiq:more_post, r=eddyb
[rust.git] / src / libcoretest / 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(as_unsafe_cell)]
14 #![feature(borrow_state)]
15 #![feature(box_syntax)]
16 #![feature(cell_extras)]
17 #![feature(const_fn)]
18 #![feature(copy_from_slice)]
19 #![feature(core_float)]
20 #![feature(core_private_bignum)]
21 #![feature(core_private_diy_float)]
22 #![feature(dec2flt)]
23 #![feature(decode_utf16)]
24 #![feature(fixed_size_array)]
25 #![feature(float_extras)]
26 #![feature(flt2dec)]
27 #![feature(fmt_radix)]
28 #![feature(iter_arith)]
29 #![feature(iter_arith)]
30 #![feature(libc)]
31 #![feature(nonzero)]
32 #![feature(peekable_is_empty)]
33 #![feature(ptr_as_ref)]
34 #![feature(rand)]
35 #![feature(raw)]
36 #![feature(slice_patterns)]
37 #![feature(step_by)]
38 #![feature(test)]
39 #![feature(unboxed_closures)]
40 #![feature(unicode)]
41 #![feature(unique)]
42
43 extern crate core;
44 extern crate test;
45 extern crate libc;
46 extern crate rustc_unicode;
47 extern crate rand;
48
49 mod any;
50 mod array;
51 mod atomic;
52 mod cell;
53 mod char;
54 mod clone;
55 mod cmp;
56 mod fmt;
57 mod hash;
58 mod intrinsics;
59 mod iter;
60 mod mem;
61 mod nonzero;
62 mod num;
63 mod ops;
64 mod option;
65 mod ptr;
66 mod result;
67 mod slice;
68 mod str;
69 mod tuple;