]> git.lizzy.rs Git - rust.git/blob - src/libcoretest/lib.rs
Rollup merge of #40521 - TimNN:panic-free-shift, r=alexcrichton
[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(box_syntax)]
14 #![feature(char_escape_debug)]
15 #![feature(const_fn)]
16 #![feature(core_private_bignum)]
17 #![feature(core_private_diy_float)]
18 #![feature(dec2flt)]
19 #![feature(decode_utf8)]
20 #![feature(fixed_size_array)]
21 #![feature(flt2dec)]
22 #![feature(libc)]
23 #![feature(nonzero)]
24 #![feature(rand)]
25 #![feature(raw)]
26 #![feature(sip_hash_13)]
27 #![feature(slice_patterns)]
28 #![feature(step_by)]
29 #![feature(test)]
30 #![feature(try_from)]
31 #![feature(unicode)]
32 #![feature(unique)]
33 #![feature(fmt_internals)]
34
35 extern crate core;
36 extern crate test;
37 extern crate libc;
38 extern crate std_unicode;
39 extern crate rand;
40
41 mod any;
42 mod array;
43 mod atomic;
44 mod cell;
45 mod char;
46 mod clone;
47 mod cmp;
48 mod fmt;
49 mod hash;
50 mod intrinsics;
51 mod iter;
52 mod mem;
53 mod nonzero;
54 mod num;
55 mod ops;
56 mod option;
57 mod ptr;
58 mod result;
59 mod slice;
60 mod str;
61 mod tuple;