]> git.proxmox.com Git - rustc.git/blame - src/libcoretest/lib.rs
Imported Upstream version 1.9.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
7453a54e
SL
11#![deny(warnings)]
12
62682a34
SL
13#![feature(as_unsafe_cell)]
14#![feature(borrow_state)]
1a4d82fc 15#![feature(box_syntax)]
62682a34 16#![feature(cell_extras)]
62682a34 17#![feature(const_fn)]
62682a34 18#![feature(core_float)]
b039eaaf
SL
19#![feature(core_private_bignum)]
20#![feature(core_private_diy_float)]
e9174d1e 21#![feature(dec2flt)]
e9174d1e 22#![feature(fixed_size_array)]
62682a34 23#![feature(float_extras)]
62682a34 24#![feature(flt2dec)]
62682a34 25#![feature(iter_arith)]
62682a34
SL
26#![feature(libc)]
27#![feature(nonzero)]
92a42be0 28#![feature(peekable_is_empty)]
c34b1796 29#![feature(rand)]
62682a34 30#![feature(raw)]
62682a34
SL
31#![feature(slice_patterns)]
32#![feature(step_by)]
33#![feature(test)]
34#![feature(unboxed_closures)]
c34b1796 35#![feature(unicode)]
c34b1796 36#![feature(unique)]
223e47cc 37
1a4d82fc
JJ
38extern crate core;
39extern crate test;
40extern crate libc;
d9579d0f
AL
41extern crate rustc_unicode;
42extern crate rand;
223e47cc 43
1a4d82fc 44mod any;
e9174d1e 45mod array;
1a4d82fc
JJ
46mod atomic;
47mod cell;
48mod char;
b039eaaf 49mod clone;
1a4d82fc 50mod cmp;
1a4d82fc
JJ
51mod fmt;
52mod hash;
b039eaaf 53mod intrinsics;
1a4d82fc
JJ
54mod iter;
55mod mem;
56mod nonzero;
57mod num;
58mod ops;
59mod option;
60mod ptr;
61mod result;
62mod slice;
63mod str;
64mod tuple;