summaryrefslogtreecommitdiffstats
path: root/tests/ui/dropck/explicit-drop-bounds.bad2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/dropck/explicit-drop-bounds.bad2.stderr')
-rw-r--r--tests/ui/dropck/explicit-drop-bounds.bad2.stderr35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/ui/dropck/explicit-drop-bounds.bad2.stderr b/tests/ui/dropck/explicit-drop-bounds.bad2.stderr
new file mode 100644
index 000000000..832af3e52
--- /dev/null
+++ b/tests/ui/dropck/explicit-drop-bounds.bad2.stderr
@@ -0,0 +1,35 @@
+error[E0277]: the trait bound `T: Copy` is not satisfied
+ --> $DIR/explicit-drop-bounds.rs:37:18
+ |
+LL | impl<T> Drop for DropMe<T>
+ | ^^^^^^^^^ the trait `Copy` is not implemented for `T`
+ |
+note: required by a bound in `DropMe`
+ --> $DIR/explicit-drop-bounds.rs:7:18
+ |
+LL | struct DropMe<T: Copy>(T);
+ | ^^^^ required by this bound in `DropMe`
+help: consider restricting type parameter `T`
+ |
+LL | impl<T: std::marker::Copy> Drop for DropMe<T>
+ | +++++++++++++++++++
+
+error[E0277]: the trait bound `T: Copy` is not satisfied
+ --> $DIR/explicit-drop-bounds.rs:40:13
+ |
+LL | fn drop(&mut self) {}
+ | ^^^^^^^^^ the trait `Copy` is not implemented for `T`
+ |
+note: required by a bound in `DropMe`
+ --> $DIR/explicit-drop-bounds.rs:7:18
+ |
+LL | struct DropMe<T: Copy>(T);
+ | ^^^^ required by this bound in `DropMe`
+help: consider restricting type parameter `T`
+ |
+LL | impl<T: std::marker::Copy> Drop for DropMe<T>
+ | +++++++++++++++++++
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0277`.