about summary refs log tree commit diff
path: root/src/test/compile-fail/bad-method-typaram-kind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/bad-method-typaram-kind.rs')
-rw-r--r--src/test/compile-fail/bad-method-typaram-kind.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/bad-method-typaram-kind.rs b/src/test/compile-fail/bad-method-typaram-kind.rs
index 2129d4fbd50..224187c8ac4 100644
--- a/src/test/compile-fail/bad-method-typaram-kind.rs
+++ b/src/test/compile-fail/bad-method-typaram-kind.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 fn foo<T:'static>() {
-    1.bar::<T>(); //~ ERROR `core::marker::Send` is not implemented
+    1.bar::<T>(); //~ ERROR `std::marker::Send` is not implemented
 }
 
 trait bar {