]> git.proxmox.com Git - rustc.git/blob - src/libcoretest/lib.rs
Imported Upstream version 1.6.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 #![feature(as_unsafe_cell)]
12 #![feature(borrow_state)]
13 #![feature(box_syntax)]
14 #![feature(cell_extras)]
15 #![feature(const_fn)]
16 #![feature(core)]
17 #![feature(core_float)]
18 #![feature(core_private_bignum)]
19 #![feature(core_private_diy_float)]
20 #![feature(dec2flt)]
21 #![feature(decode_utf16)]
22 #![feature(fixed_size_array)]
23 #![feature(float_extras)]
24 #![feature(float_from_str_radix)]
25 #![feature(flt2dec)]
26 #![feature(fmt_radix)]
27 #![feature(iter_arith)]
28 #![feature(iter_arith)]
29 #![feature(iter_cmp)]
30 #![feature(iter_order)]
31 #![feature(libc)]
32 #![feature(nonzero)]
33 #![feature(num_bits_bytes)]
34 #![feature(peekable_is_empty)]
35 #![feature(ptr_as_ref)]
36 #![feature(rand)]
37 #![feature(range_inclusive)]
38 #![feature(raw)]
39 #![feature(slice_bytes)]
40 #![feature(slice_patterns)]
41 #![feature(step_by)]
42 #![feature(test)]
43 #![feature(unboxed_closures)]
44 #![feature(unicode)]
45 #![feature(unique)]
46
47 extern crate core;
48 extern crate test;
49 extern crate libc;
50 extern crate rustc_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;