diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-03-20 11:24:08 +0000 | 
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-03-30 22:00:48 +0000 | 
| commit | da41e583d614411c99370881c38f919c99dec448 (patch) | |
| tree | 7b5ad7416f4c33196e9f03f5aff1a0cfb3731878 /src/test/compile-fail/kindck-send-object.rs | |
| parent | 0c6f067961f4f7475a74e1f3c32ed0599f541291 (diff) | |
| download | rust-da41e583d614411c99370881c38f919c99dec448.tar.gz rust-da41e583d614411c99370881c38f919c99dec448.zip | |
Fix fallout in tests
Diffstat (limited to 'src/test/compile-fail/kindck-send-object.rs')
| -rw-r--r-- | src/test/compile-fail/kindck-send-object.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/test/compile-fail/kindck-send-object.rs b/src/test/compile-fail/kindck-send-object.rs index 570f7ad7fe3..7525ff932bb 100644 --- a/src/test/compile-fail/kindck-send-object.rs +++ b/src/test/compile-fail/kindck-send-object.rs @@ -20,11 +20,11 @@ trait Message : Send { } fn object_ref_with_static_bound_not_ok() { assert_send::<&'static (Dummy+'static)>(); - //~^ ERROR the trait `core::marker::Sync` is not implemented + //~^ ERROR the trait `std::marker::Sync` is not implemented } fn box_object_with_no_bound_not_ok<'a>() { - assert_send::<Box<Dummy>>(); //~ ERROR the trait `core::marker::Send` is not implemented + assert_send::<Box<Dummy>>(); //~ ERROR the trait `std::marker::Send` is not implemented } fn object_with_send_bound_ok() { | 
