about summary refs log tree commit diff
path: root/src/test/compile-fail/unsendable-class.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/unsendable-class.rs')
-rw-r--r--src/test/compile-fail/unsendable-class.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/unsendable-class.rs b/src/test/compile-fail/unsendable-class.rs
index 993df8e59f3..96f36af53aa 100644
--- a/src/test/compile-fail/unsendable-class.rs
+++ b/src/test/compile-fail/unsendable-class.rs
@@ -30,7 +30,7 @@ fn foo(i:int, j: Rc<String>) -> foo {
 fn main() {
   let cat = "kitty".to_string();
   let (tx, _) = channel();
-  //~^ ERROR `core::kinds::Send` is not implemented
-  //~^^ ERROR `core::kinds::Send` is not implemented
+  //~^ ERROR `core::marker::Send` is not implemented
+  //~^^ ERROR `core::marker::Send` is not implemented
   tx.send(foo(42, Rc::new(cat)));
 }