De-globbing
This commit is contained in:
parent
ed9faea892
commit
8034413247
@ -63,7 +63,7 @@ fn main() {
|
|||||||
|
|
||||||
#[warn(missing_doc)];
|
#[warn(missing_doc)];
|
||||||
|
|
||||||
#[feature(macro_rules, struct_variant, globs, phase)];
|
#[feature(macro_rules, struct_variant, phase)];
|
||||||
|
|
||||||
extern crate collections;
|
extern crate collections;
|
||||||
extern crate extra;
|
extern crate extra;
|
||||||
|
@ -248,7 +248,7 @@ impl<'parent, T> MutableArray<T> for MutArraySlice<'parent, T> {}
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::{DimensionInfo, ArrayBase, Array, MutableArray};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_from_vec() {
|
fn test_from_vec() {
|
||||||
|
@ -384,7 +384,14 @@ impl<T: Ord+Normalizable+Clone> Range<T> {
|
|||||||
mod test {
|
mod test {
|
||||||
use std::i32;
|
use std::i32;
|
||||||
|
|
||||||
use super::*;
|
use super::{RangeBound,
|
||||||
|
Range,
|
||||||
|
Inclusive,
|
||||||
|
Exclusive,
|
||||||
|
UpperBound,
|
||||||
|
LowerBound,
|
||||||
|
Normalizable,
|
||||||
|
BoundType};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_range_bound_lower_lt() {
|
fn test_range_bound_lower_lt() {
|
||||||
|
Loading…
Reference in New Issue
Block a user