summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/regions-wf-trait-object.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/regions/regions-wf-trait-object.stderr')
-rw-r--r--tests/ui/regions/regions-wf-trait-object.stderr20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/ui/regions/regions-wf-trait-object.stderr b/tests/ui/regions/regions-wf-trait-object.stderr
new file mode 100644
index 000000000..f6006ca04
--- /dev/null
+++ b/tests/ui/regions/regions-wf-trait-object.stderr
@@ -0,0 +1,20 @@
+error[E0478]: lifetime bound not satisfied
+ --> $DIR/regions-wf-trait-object.rs:7:8
+ |
+LL | x: Box<dyn TheTrait<'a>+'b>
+ | ^^^^^^^^^^^^^^^^^^^^^^^^
+ |
+note: lifetime parameter instantiated with the lifetime `'b` as defined here
+ --> $DIR/regions-wf-trait-object.rs:6:15
+ |
+LL | struct Foo<'a,'b> {
+ | ^^
+note: but lifetime parameter must outlive the lifetime `'a` as defined here
+ --> $DIR/regions-wf-trait-object.rs:6:12
+ |
+LL | struct Foo<'a,'b> {
+ | ^^
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0478`.