]> git.proxmox.com Git - rustc.git/blame - src/libcoretest/lib.rs
Imported Upstream version 1.2.0+dfsg1
[rustc.git] / src / libcoretest / lib.rs
CommitLineData
1a4d82fc 1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
62682a34
SL
11#![feature(as_unsafe_cell)]
12#![feature(borrow_state)]
1a4d82fc 13#![feature(box_syntax)]
62682a34
SL
14#![feature(cell_extras)]
15#![feature(cmp_partial)]
16#![feature(const_fn)]
c34b1796 17#![feature(core)]
62682a34
SL
18#![feature(core_float)]
19#![feature(float_extras)]
20#![feature(float_from_str_radix)]
21#![feature(flt2dec)]
22#![feature(fmt_radix)]
23#![feature(hash_default)]
24#![feature(hasher_write)]
25#![feature(iter_arith)]
26#![feature(iter_arith)]
27#![feature(iter_cmp)]
28#![feature(iter_empty)]
29#![feature(iter_idx)]
30#![feature(iter_iterate)]
31#![feature(iter_min_max)]
32#![feature(iter_once)]
33#![feature(iter_order)]
34#![feature(iter_unfold)]
35#![feature(libc)]
36#![feature(nonzero)]
37#![feature(num_bits_bytes)]
38#![feature(ptr_as_ref)]
c34b1796 39#![feature(rand)]
62682a34
SL
40#![feature(range_inclusive)]
41#![feature(raw)]
42#![feature(result_expect)]
43#![feature(slice_bytes)]
44#![feature(slice_patterns)]
45#![feature(step_by)]
46#![feature(test)]
47#![feature(unboxed_closures)]
c34b1796 48#![feature(unicode)]
c34b1796 49#![feature(unique)]
223e47cc 50
1a4d82fc
JJ
51extern crate core;
52extern crate test;
53extern crate libc;
d9579d0f
AL
54extern crate rustc_unicode;
55extern crate rand;
223e47cc 56
1a4d82fc
JJ
57mod any;
58mod atomic;
59mod cell;
60mod char;
61mod cmp;
1a4d82fc
JJ
62mod fmt;
63mod hash;
64mod iter;
65mod mem;
66mod nonzero;
67mod num;
68mod ops;
69mod option;
70mod ptr;
71mod result;
72mod slice;
73mod str;
74mod tuple;