Skip to content

Commit 8034413

Browse files
committed
De-globbing
1 parent ed9faea commit 8034413

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ fn main() {
6363

6464
#[warn(missing_doc)];
6565

66-
#[feature(macro_rules, struct_variant, globs, phase)];
66+
#[feature(macro_rules, struct_variant, phase)];
6767

6868
extern crate collections;
6969
extern crate extra;

src/types/array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ impl<'parent, T> MutableArray<T> for MutArraySlice<'parent, T> {}
248248

249249
#[cfg(test)]
250250
mod tests {
251-
use super::*;
251+
use super::{DimensionInfo, ArrayBase, Array, MutableArray};
252252

253253
#[test]
254254
fn test_from_vec() {

src/types/range.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,14 @@ impl<T: Ord+Normalizable+Clone> Range<T> {
384384
mod test {
385385
use std::i32;
386386

387-
use super::*;
387+
use super::{RangeBound,
388+
Range,
389+
Inclusive,
390+
Exclusive,
391+
UpperBound,
392+
LowerBound,
393+
Normalizable,
394+
BoundType};
388395

389396
#[test]
390397
fn test_range_bound_lower_lt() {

0 commit comments

Comments
 (0)