about summary refs log tree commit diff
path: root/src/test/ui/no_share-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/no_share-struct.rs')
-rw-r--r--src/test/ui/no_share-struct.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/no_share-struct.rs b/src/test/ui/no_share-struct.rs
deleted file mode 100644
index 7d8a36a76f2..00000000000
--- a/src/test/ui/no_share-struct.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-#![feature(negative_impls)]
-
-use std::marker::Sync;
-
-struct Foo { a: isize }
-impl !Sync for Foo {}
-
-fn bar<T: Sync>(_: T) {}
-
-fn main() {
-    let x = Foo { a: 5 };
-    bar(x);
-    //~^ ERROR `Foo` cannot be shared between threads safely [E0277]
-}