summaryrefslogtreecommitdiffstats
path: root/tests/ui/static/static-lifetime.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/static/static-lifetime.stderr')
-rw-r--r--tests/ui/static/static-lifetime.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/static/static-lifetime.stderr b/tests/ui/static/static-lifetime.stderr
new file mode 100644
index 000000000..4af3370c7
--- /dev/null
+++ b/tests/ui/static/static-lifetime.stderr
@@ -0,0 +1,16 @@
+error[E0478]: lifetime bound not satisfied
+ --> $DIR/static-lifetime.rs:3:20
+ |
+LL | impl<'a, A: Clone> Arbitrary for ::std::borrow::Cow<'a, A> {}
+ | ^^^^^^^^^
+ |
+note: lifetime parameter instantiated with the lifetime `'a` as defined here
+ --> $DIR/static-lifetime.rs:3:6
+ |
+LL | impl<'a, A: Clone> Arbitrary for ::std::borrow::Cow<'a, A> {}
+ | ^^
+ = note: but lifetime parameter must outlive the static lifetime
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0478`.