From 6e2b082adc84c22ea3b023f4f08d7b21857fc399 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Thu, 23 May 2013 08:33:30 -0700 Subject: [PATCH] libextra: Add missing core::prelude import. rs=burningtree --- src/libextra/smallintmap.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libextra/smallintmap.rs b/src/libextra/smallintmap.rs index b2a98845b2f..069368d3fea 100644 --- a/src/libextra/smallintmap.rs +++ b/src/libextra/smallintmap.rs @@ -362,6 +362,8 @@ mod tests { #[cfg(test)] mod test_set { + use core::prelude::*; + use super::SmallIntSet; #[test]