]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
rustdoc: Hide `self: Box<Self>` in list of deref methods
[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(iterator_step_by)]
24 #![feature(i128_type)]
25 #![feature(inclusive_range)]
26 #![feature(iter_rfind)]
27 #![feature(libc)]
28 #![feature(nonzero)]
29 #![feature(rand)]
30 #![feature(raw)]
31 #![feature(sip_hash_13)]
32 #![feature(slice_patterns)]
33 #![feature(sort_internals)]
34 #![feature(sort_unstable)]
35 #![feature(specialization)]
36 #![feature(step_by)]
37 #![feature(step_trait)]
38 #![feature(test)]
39 #![feature(trusted_len)]
40 #![feature(try_from)]
41 #![feature(unicode)]
42 #![feature(unique)]
43
44 extern crate core;
45 extern crate test;
46 extern crate libc;
47 extern crate std_unicode;
48 extern crate rand;
49
50 mod any;
51 mod array;
52 mod atomic;
53 mod cell;
54 mod char;
55 mod clone;
56 mod cmp;
57 mod fmt;
58 mod hash;
59 mod intrinsics;
60 mod iter;
61 mod mem;
62 mod nonzero;
63 mod num;
64 mod ops;
65 mod option;
66 mod ptr;
67 mod result;
68 mod slice;
69 mod str;
70 mod tuple;