summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dropck/relate_lt_in_type_outlives_bound.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/dropck/relate_lt_in_type_outlives_bound.stderr')
-rw-r--r--src/test/ui/dropck/relate_lt_in_type_outlives_bound.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/dropck/relate_lt_in_type_outlives_bound.stderr b/src/test/ui/dropck/relate_lt_in_type_outlives_bound.stderr
new file mode 100644
index 000000000..3d9685db6
--- /dev/null
+++ b/src/test/ui/dropck/relate_lt_in_type_outlives_bound.stderr
@@ -0,0 +1,15 @@
+error[E0367]: `Drop` impl requires `T: 'static` but the struct it is implemented for does not
+ --> $DIR/relate_lt_in_type_outlives_bound.rs:7:8
+ |
+LL | T: 'static,
+ | ^^^^^^^
+ |
+note: the implementor must specify the same requirement
+ --> $DIR/relate_lt_in_type_outlives_bound.rs:1:1
+ |
+LL | struct Wrapper<'a, T>(&'a T)
+ | ^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0367`.