De-globbing

This commit is contained in:
Steven Fackler 2014-03-09 22:01:51 -07:00
parent ed9faea892
commit 8034413247
3 changed files with 10 additions and 3 deletions

View File

@ -63,7 +63,7 @@ fn main() {
#[warn(missing_doc)];
#[feature(macro_rules, struct_variant, globs, phase)];
#[feature(macro_rules, struct_variant, phase)];
extern crate collections;
extern crate extra;

View File

@ -248,7 +248,7 @@ impl<'parent, T> MutableArray<T> for MutArraySlice<'parent, T> {}
#[cfg(test)]
mod tests {
use super::*;
use super::{DimensionInfo, ArrayBase, Array, MutableArray};
#[test]
fn test_from_vec() {

View File

@ -384,7 +384,14 @@ impl<T: Ord+Normalizable+Clone> Range<T> {
mod test {
use std::i32;
use super::*;
use super::{RangeBound,
Range,
Inclusive,
Exclusive,
UpperBound,
LowerBound,
Normalizable,
BoundType};
#[test]
fn test_range_bound_lower_lt() {