]> git.proxmox.com Git - rustc.git/blame - src/libcore/tests/lib.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / libcore / tests / 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)]
041b39d2 14#![feature(core_float)]
b039eaaf
SL
15#![feature(core_private_bignum)]
16#![feature(core_private_diy_float)]
e9174d1e 17#![feature(dec2flt)]
5bcae85e 18#![feature(decode_utf8)]
041b39d2 19#![feature(exact_size_is_empty)]
e9174d1e 20#![feature(fixed_size_array)]
62682a34 21#![feature(flt2dec)]
cc61c64b 22#![feature(fmt_internals)]
7cac9316
XL
23#![feature(iterator_step_by)]
24#![feature(i128_type)]
25#![feature(inclusive_range)]
041b39d2 26#![feature(inclusive_range_syntax)]
abe05a73 27#![feature(iterator_try_fold)]
cc61c64b 28#![feature(iter_rfind)]
ea8adc8c 29#![feature(iter_rfold)]
62682a34 30#![feature(nonzero)]
62682a34 31#![feature(raw)]
3b2f2976 32#![feature(refcell_replace_swap)]
3157f602 33#![feature(sip_hash_13)]
62682a34 34#![feature(slice_patterns)]
7cac9316 35#![feature(slice_rotate)]
cc61c64b 36#![feature(sort_internals)]
7cac9316 37#![feature(specialization)]
7cac9316 38#![feature(step_trait)]
62682a34 39#![feature(test)]
7cac9316 40#![feature(trusted_len)]
5bcae85e 41#![feature(try_from)]
ea8adc8c 42#![feature(try_trait)]
c34b1796 43#![feature(unique)]
223e47cc 44
ea8adc8c
XL
45#![feature(const_atomic_bool_new)]
46#![feature(const_atomic_usize_new)]
47#![feature(const_atomic_isize_new)]
48
1a4d82fc
JJ
49extern crate core;
50extern crate test;
223e47cc 51
1a4d82fc 52mod any;
e9174d1e 53mod array;
1a4d82fc
JJ
54mod atomic;
55mod cell;
56mod char;
b039eaaf 57mod clone;
1a4d82fc 58mod cmp;
1a4d82fc
JJ
59mod fmt;
60mod hash;
b039eaaf 61mod intrinsics;
1a4d82fc
JJ
62mod iter;
63mod mem;
64mod nonzero;
65mod num;
66mod ops;
67mod option;
68mod ptr;
69mod result;
70mod slice;
71mod str;
72mod tuple;