]> git.lizzy.rs Git - rust.git/blob - src/libcoretest/lib.rs
Changed issue number to 36105
[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(as_unsafe_cell)]
14 #![feature(borrow_state)]
15 #![feature(box_syntax)]
16 #![feature(cell_extras)]
17 #![feature(char_escape_debug)]
18 #![feature(const_fn)]
19 #![feature(core_private_bignum)]
20 #![feature(core_private_diy_float)]
21 #![feature(dec2flt)]
22 #![feature(decode_utf8)]
23 #![feature(fixed_size_array)]
24 #![feature(flt2dec)]
25 #![feature(libc)]
26 #![feature(nonzero)]
27 #![feature(rand)]
28 #![feature(raw)]
29 #![feature(sip_hash_13)]
30 #![feature(slice_patterns)]
31 #![feature(step_by)]
32 #![feature(test)]
33 #![feature(try_from)]
34 #![feature(unicode)]
35 #![feature(unique)]
36 #![feature(iter_max_by)]
37 #![feature(iter_min_by)]
38
39 extern crate core;
40 extern crate test;
41 extern crate libc;
42 extern crate rustc_unicode;
43 extern crate rand;
44
45 mod any;
46 mod array;
47 mod atomic;
48 mod cell;
49 mod char;
50 mod clone;
51 mod cmp;
52 mod fmt;
53 mod hash;
54 mod intrinsics;
55 mod iter;
56 mod mem;
57 mod nonzero;
58 mod num;
59 mod ops;
60 mod option;
61 mod ptr;
62 mod result;
63 mod slice;
64 mod str;
65 mod tuple;