]> git.lizzy.rs Git - rust.git/blob - src/libcoretest/lib.rs
Do not use entropy during gen_weighted_bool(1)
[rust.git] / src / libcoretest / 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 #![feature(globs, unsafe_destructor, macro_rules, slicing_syntax, default_type_params)]
11 #![feature(unboxed_closures)]
12
13 extern crate core;
14 extern crate test;
15 extern crate libc;
16 extern crate unicode;
17
18 mod any;
19 mod atomic;
20 mod cell;
21 mod char;
22 mod cmp;
23 mod finally;
24 mod fmt;
25 mod hash;
26 mod iter;
27 mod mem;
28 mod nonzero;
29 mod num;
30 mod ops;
31 mod option;
32 mod ptr;
33 mod raw;
34 mod result;
35 mod slice;
36 mod str;
37 mod tuple;