about summary refs log tree commit diff
path: root/src/test/run-pass/method-recursive-blanket-impl.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/method-recursive-blanket-impl.rs')
-rw-r--r--src/test/run-pass/method-recursive-blanket-impl.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/method-recursive-blanket-impl.rs b/src/test/run-pass/method-recursive-blanket-impl.rs
index e81244d4bea..338bd89ab5c 100644
--- a/src/test/run-pass/method-recursive-blanket-impl.rs
+++ b/src/test/run-pass/method-recursive-blanket-impl.rs
@@ -13,7 +13,7 @@
 // know not to stop at the blanket, we have to recursively evaluate
 // the `T:Foo` bound.
 
-use std::kinds::Sized;
+use std::marker::Sized;
 
 // Note: this must be generic for the problem to show up
 trait Foo<A> {