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