rust/src/libcollectionstest
Niko Matsakis c92bdcb232 Fallout where types must be specified.
This is due to a [breaking-change] to operators. The primary affected
code is uses of the `Rng` trait where we used to (incorrectly) infer the
right-hand-side type from the left-hand-side, in the case that the LHS
type was a scalar like `i32`. The fix is to add a type annotation like
`x + rng.gen::<i32>()`.
2015-03-30 05:02:20 -04:00
..
bit
btree Fallout from changing fn traits to use inheritance rather than bridge 2015-03-23 19:57:30 -04:00
bench.rs Fallout where types must be specified. 2015-03-30 05:02:20 -04:00
binary_heap.rs
enum_set.rs
fmt.rs
lib.rs Test fixes and rebase conflicts, round 2 2015-03-23 17:10:19 -07:00
linked_list.rs move some tests back to libcollections 2015-03-16 21:57:42 -05:00
slice.rs std: Remove deprecated ptr functions 2015-03-21 10:16:01 -07:00
str.rs StrExt::splitn should not require a DoubleEndedSearcher 2015-03-19 19:25:22 -04:00
string.rs
vec_deque.rs std: Stabilize IteratorExt::cloned 2015-03-17 18:05:58 -07:00
vec_map.rs
vec.rs