]> git.lizzy.rs Git - rust.git/blob - src/libcore/tests/lib.rs
Rollup merge of #42428 - scottmcm:str-get-overflow, r=sfackler
[rust.git] / src / libcore / tests / lib.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
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
11 #![deny(warnings)]
12
13 #![feature(box_syntax)]
14 #![feature(char_escape_debug)]
15 #![feature(const_fn)]
16 #![feature(core_private_bignum)]
17 #![feature(core_private_diy_float)]
18 #![feature(dec2flt)]
19 #![feature(decode_utf8)]
20 #![feature(fixed_size_array)]
21 #![feature(flt2dec)]
22 #![feature(fmt_internals)]
23 #![feature(iterator_step_by)]
24 #![feature(i128_type)]
25 #![feature(inclusive_range)]
26 #![feature(iter_rfind)]
27 #![feature(libc)]
28 #![feature(nonzero)]
29 #![feature(rand)]
30 #![feature(raw)]
31 #![feature(sip_hash_13)]
32 #![feature(slice_patterns)]
33 #![feature(slice_rotate)]
34 #![feature(sort_internals)]
35 #![feature(sort_unstable)]
36 #![feature(specialization)]
37 #![feature(step_by)]
38 #![feature(step_trait)]
39 #![feature(test)]
40 #![feature(trusted_len)]
41 #![feature(try_from)]
42 #![feature(unicode)]
43 #![feature(unique)]
44
45 extern crate core;
46 extern crate test;
47 extern crate libc;
48 extern crate std_unicode;
49 extern crate rand;
50
51 mod any;
52 mod array;
53 mod atomic;
54 mod cell;
55 mod char;
56 mod clone;
57 mod cmp;
58 mod fmt;
59 mod hash;
60 mod intrinsics;
61 mod iter;
62 mod mem;
63 mod nonzero;
64 mod num;
65 mod ops;
66 mod option;
67 mod ptr;
68 mod result;
69 mod slice;
70 mod str;
71 mod tuple;