]> git.proxmox.com Git - rustc.git/blob - src/libcoretest/lib.rs
Imported Upstream version 1.9.0+dfsg1
[rustc.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(const_fn)]
18 #![feature(core_float)]
19 #![feature(core_private_bignum)]
20 #![feature(core_private_diy_float)]
21 #![feature(dec2flt)]
22 #![feature(fixed_size_array)]
23 #![feature(float_extras)]
24 #![feature(flt2dec)]
25 #![feature(iter_arith)]
26 #![feature(libc)]
27 #![feature(nonzero)]
28 #![feature(peekable_is_empty)]
29 #![feature(rand)]
30 #![feature(raw)]
31 #![feature(slice_patterns)]
32 #![feature(step_by)]
33 #![feature(test)]
34 #![feature(unboxed_closures)]
35 #![feature(unicode)]
36 #![feature(unique)]
37
38 extern crate core;
39 extern crate test;
40 extern crate libc;
41 extern crate rustc_unicode;
42 extern crate rand;
43
44 mod any;
45 mod array;
46 mod atomic;
47 mod cell;
48 mod char;
49 mod clone;
50 mod cmp;
51 mod fmt;
52 mod hash;
53 mod intrinsics;
54 mod iter;
55 mod mem;
56 mod nonzero;
57 mod num;
58 mod ops;
59 mod option;
60 mod ptr;
61 mod result;
62 mod slice;
63 mod str;
64 mod tuple;