summaryrefslogtreecommitdiffstats
path: root/src/test/ui/fmt/send-sync.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/fmt/send-sync.rs')
-rw-r--r--src/test/ui/fmt/send-sync.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/ui/fmt/send-sync.rs b/src/test/ui/fmt/send-sync.rs
deleted file mode 100644
index 95ec68d1d..000000000
--- a/src/test/ui/fmt/send-sync.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-fn send<T: Send>(_: T) {}
-fn sync<T: Sync>(_: T) {}
-
-fn main() {
- // `Cell` is not `Sync`, so `&Cell` is neither `Sync` nor `Send`,
- // `std::fmt::Arguments` used to forget this...
- let c = std::cell::Cell::new(42);
- send(format_args!("{:?}", c)); //~ ERROR E0277
- sync(format_args!("{:?}", c)); //~ ERROR E0277
-}