about summary refs log tree commit diff
diff options
context:
space:
mode:
authortyler <tyler@brainiumstudios.com>2019-05-03 16:26:54 -0700
committertyler <tyler@brainiumstudios.com>2019-05-15 07:30:33 -0700
commitf5e56eeff6e0ed186410a358db565ab959648aba (patch)
treea9ded0b00c03cbd06142ab0c8b044b6e09168c77
parent516c03d5102d0ffb5cc1b86451d837c26d2a0f6a (diff)
downloadrust-f5e56eeff6e0ed186410a358db565ab959648aba.tar.gz
rust-f5e56eeff6e0ed186410a358db565ab959648aba.zip
clang tidy fixes
-rw-r--r--src/test/compile-fail/issue-43733-2.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/compile-fail/issue-43733-2.rs b/src/test/compile-fail/issue-43733-2.rs
index 8e3c93ac251..c14592187ab 100644
--- a/src/test/compile-fail/issue-43733-2.rs
+++ b/src/test/compile-fail/issue-43733-2.rs
@@ -23,6 +23,7 @@ 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<std::thread::local::fast::DtorState>` 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() {}