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