]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
d92c378160d2e0e4ba3eabcc5fcdc813675b07c4
[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_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(fmt_internals)]
23 #![feature(libc)]
24 #![feature(nonzero)]
25 #![feature(rand)]
26 #![feature(raw)]
27 #![feature(sip_hash_13)]
28 #![feature(slice_patterns)]
29 #![feature(sort_internals)]
30 #![feature(sort_unstable)]
31 #![feature(step_by)]
32 #![feature(test)]
33 #![feature(try_from)]
34 #![feature(unicode)]
35 #![feature(unique)]
36
37 extern crate core;
38 extern crate test;
39 extern crate libc;
40 extern crate std_unicode;
41 extern crate rand;
42
43 mod any;
44 mod array;
45 mod atomic;
46 mod cell;
47 mod char;
48 mod clone;
49 mod cmp;
50 mod fmt;
51 mod hash;
52 mod intrinsics;
53 mod iter;
54 mod mem;
55 mod nonzero;
56 mod num;
57 mod ops;
58 mod option;
59 mod ptr;
60 mod result;
61 mod slice;
62 mod str;
63 mod tuple;