remove Any[Mut]RefExt traits in favor of impl Any

This commit is contained in:
Jorge Aparicio
2015-01-01 01:13:08 -05:00
parent c6c786671d
commit 5172b8046a
8 changed files with 12 additions and 35 deletions

View File

@@ -442,7 +442,7 @@ impl<T: Send> Drop for JoinGuard<T> {
mod test {
use prelude::v1::*;
use any::{Any, AnyRefExt};
use any::Any;
use sync::mpsc::{channel, Sender};
use boxed::BoxAny;
use result;