]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
Auto merge of #42430 - nagisa:core-float, r=alexcrichton
[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(char_escape_debug)]
15 #![feature(const_fn)]
16 #![feature(core_float)]
17 #![feature(core_private_bignum)]
18 #![feature(core_private_diy_float)]
19 #![feature(dec2flt)]
20 #![feature(decode_utf8)]
21 #![feature(fixed_size_array)]
22 #![feature(flt2dec)]
23 #![feature(fmt_internals)]
24 #![feature(iterator_step_by)]
25 #![feature(i128_type)]
26 #![feature(inclusive_range)]
27 #![feature(iter_rfind)]
28 #![feature(libc)]
29 #![feature(nonzero)]
30 #![feature(ord_max_min)]
31 #![feature(rand)]
32 #![feature(raw)]
33 #![feature(sip_hash_13)]
34 #![feature(slice_patterns)]
35 #![feature(slice_rotate)]
36 #![feature(sort_internals)]
37 #![feature(sort_unstable)]
38 #![feature(specialization)]
39 #![feature(step_by)]
40 #![feature(step_trait)]
41 #![feature(test)]
42 #![feature(trusted_len)]
43 #![feature(try_from)]
44 #![feature(unicode)]
45 #![feature(unique)]
46
47 extern crate core;
48 extern crate test;
49 extern crate libc;
50 extern crate std_unicode;
51 extern crate rand;
52
53 mod any;
54 mod array;
55 mod atomic;
56 mod cell;
57 mod char;
58 mod clone;
59 mod cmp;
60 mod fmt;
61 mod hash;
62 mod intrinsics;
63 mod iter;
64 mod mem;
65 mod nonzero;
66 mod num;
67 mod ops;
68 mod option;
69 mod ptr;
70 mod result;
71 mod slice;
72 mod str;
73 mod tuple;