]> git.proxmox.com Git - rustc.git/blame - src/libcoretest/lib.rs
New upstream version 1.17.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
1a4d82fc 13#![feature(box_syntax)]
5bcae85e 14#![feature(char_escape_debug)]
62682a34 15#![feature(const_fn)]
b039eaaf
SL
16#![feature(core_private_bignum)]
17#![feature(core_private_diy_float)]
e9174d1e 18#![feature(dec2flt)]
5bcae85e 19#![feature(decode_utf8)]
e9174d1e 20#![feature(fixed_size_array)]
62682a34 21#![feature(flt2dec)]
62682a34
SL
22#![feature(libc)]
23#![feature(nonzero)]
c34b1796 24#![feature(rand)]
62682a34 25#![feature(raw)]
3157f602 26#![feature(sip_hash_13)]
62682a34
SL
27#![feature(slice_patterns)]
28#![feature(step_by)]
29#![feature(test)]
5bcae85e 30#![feature(try_from)]
c34b1796 31#![feature(unicode)]
c34b1796 32#![feature(unique)]
8bb4bdeb 33#![feature(fmt_internals)]
223e47cc 34
1a4d82fc
JJ
35extern crate core;
36extern crate test;
37extern crate libc;
476ff2be 38extern crate std_unicode;
d9579d0f 39extern crate rand;
223e47cc 40
1a4d82fc 41mod any;
e9174d1e 42mod array;
1a4d82fc
JJ
43mod atomic;
44mod cell;
45mod char;
b039eaaf 46mod clone;
1a4d82fc 47mod cmp;
1a4d82fc
JJ
48mod fmt;
49mod hash;
b039eaaf 50mod intrinsics;
1a4d82fc
JJ
51mod iter;
52mod mem;
53mod nonzero;
54mod num;
55mod ops;
56mod option;
57mod ptr;
58mod result;
59mod slice;
60mod str;
61mod tuple;