summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dropck/issue-38868.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/dropck/issue-38868.stderr')
-rw-r--r--src/test/ui/dropck/issue-38868.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/dropck/issue-38868.stderr b/src/test/ui/dropck/issue-38868.stderr
new file mode 100644
index 000000000..ec81c2ea6
--- /dev/null
+++ b/src/test/ui/dropck/issue-38868.stderr
@@ -0,0 +1,16 @@
+error[E0366]: `Drop` impls cannot be specialized
+ --> $DIR/issue-38868.rs:5:1
+ |
+LL | impl Drop for List<i32> {
+ | ^^^^^^^^^^^^^^^^^^^^^^^
+ |
+ = note: `i32` is not a generic parameter
+note: use the same sequence of generic lifetime, type and const parameters as the struct definition
+ --> $DIR/issue-38868.rs:1:1
+ |
+LL | pub struct List<T> {
+ | ^^^^^^^^^^^^^^^^^^
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0366`.