summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/deriving-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/derives/deriving-bounds.rs')
-rw-r--r--src/test/ui/derives/deriving-bounds.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/derives/deriving-bounds.rs b/src/test/ui/derives/deriving-bounds.rs
deleted file mode 100644
index 95d440420..000000000
--- a/src/test/ui/derives/deriving-bounds.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-#[derive(Send)]
-//~^ ERROR cannot find derive macro `Send` in this scope
-//~| ERROR cannot find derive macro `Send` in this scope
-struct Test;
-
-#[derive(Sync)]
-//~^ ERROR cannot find derive macro `Sync` in this scope
-//~| ERROR cannot find derive macro `Sync` in this scope
-struct Test1;
-
-pub fn main() {}