summaryrefslogtreecommitdiffstats
path: root/src/test/ui/derives/deriving-bounds.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/derives/deriving-bounds.stderr')
-rw-r--r--src/test/ui/derives/deriving-bounds.stderr50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/test/ui/derives/deriving-bounds.stderr b/src/test/ui/derives/deriving-bounds.stderr
deleted file mode 100644
index 74ca37287..000000000
--- a/src/test/ui/derives/deriving-bounds.stderr
+++ /dev/null
@@ -1,50 +0,0 @@
-error: cannot find derive macro `Sync` in this scope
- --> $DIR/deriving-bounds.rs:6:10
- |
-LL | #[derive(Sync)]
- | ^^^^
- |
-note: unsafe traits like `Sync` should be implemented explicitly
- --> $DIR/deriving-bounds.rs:6:10
- |
-LL | #[derive(Sync)]
- | ^^^^
-
-error: cannot find derive macro `Sync` in this scope
- --> $DIR/deriving-bounds.rs:6:10
- |
-LL | #[derive(Sync)]
- | ^^^^
- |
-note: unsafe traits like `Sync` should be implemented explicitly
- --> $DIR/deriving-bounds.rs:6:10
- |
-LL | #[derive(Sync)]
- | ^^^^
-
-error: cannot find derive macro `Send` in this scope
- --> $DIR/deriving-bounds.rs:1:10
- |
-LL | #[derive(Send)]
- | ^^^^
- |
-note: unsafe traits like `Send` should be implemented explicitly
- --> $DIR/deriving-bounds.rs:1:10
- |
-LL | #[derive(Send)]
- | ^^^^
-
-error: cannot find derive macro `Send` in this scope
- --> $DIR/deriving-bounds.rs:1:10
- |
-LL | #[derive(Send)]
- | ^^^^
- |
-note: unsafe traits like `Send` should be implemented explicitly
- --> $DIR/deriving-bounds.rs:1:10
- |
-LL | #[derive(Send)]
- | ^^^^
-
-error: aborting due to 4 previous errors
-