about summary refs log tree commit diff
diff options
context:
space:
mode:
authortyler <tyler@brainiumstudios.com>2019-05-03 09:46:16 -0700
committertyler <tyler@brainiumstudios.com>2019-05-15 07:30:33 -0700
commit516c03d5102d0ffb5cc1b86451d837c26d2a0f6a (patch)
tree956284d85aaafd95597ab63f3f75e7a9c220e886
parentb266ba7850d3996b0f19f66d7a28478acfdcdbaf (diff)
downloadrust-516c03d5102d0ffb5cc1b86451d837c26d2a0f6a.tar.gz
rust-516c03d5102d0ffb5cc1b86451d837c26d2a0f6a.zip
fix another test
-rw-r--r--src/test/compile-fail/issue-43733-2.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-43733-2.rs b/src/test/compile-fail/issue-43733-2.rs
index 2943089674d..8e3c93ac251 100644
--- a/src/test/compile-fail/issue-43733-2.rs
+++ b/src/test/compile-fail/issue-43733-2.rs
@@ -23,6 +23,6 @@ use std::thread::__FastLocalKeyInner as Key;
 
 static __KEY: Key<()> = Key::new();
 //~^ ERROR `std::cell::UnsafeCell<std::option::Option<()>>` cannot be shared between threads
-//~| ERROR `std::cell::Cell<bool>` cannot be shared between threads safely [E0277]
+//~| ERROR `std::cell::Cell<std::thread::local::fast::DtorState>` cannot be shared between threads safely [E0277]
 
 fn main() {}