]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/issue-43733-2.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / compile-fail / issue-43733-2.rs
index dae27c4785f15b6fd024476ebbe0221647d72f4b..61dd3a923f265c9be63a2023bb41205e7d5abc38 100644 (file)
@@ -22,7 +22,7 @@ impl<T> Key<T> {
 use std::thread::__FastLocalKeyInner as Key;
 
 static __KEY: Key<()> = Key::new();
-//~^ ERROR `std::cell::UnsafeCell<std::option::Option<()>>` cannot be shared between threads
+//~^ ERROR `UnsafeCell<Option<()>>` cannot be shared between threads
 //~| ERROR cannot be shared between threads safely [E0277]
 
 fn main() {}