summary refs log tree commit diff
path: root/src/test/ui/static/static-lifetime.stderr
blob: c38b8a96f9fc27f7379d9b9132a6918f5323e3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0478]: lifetime bound not satisfied
  --> $DIR/static-lifetime.rs:13:20
   |
LL | impl<'a, A: Clone> Arbitrary for ::std::borrow::Cow<'a, A> {} //~ ERROR lifetime bound
   |                    ^^^^^^^^^
   |
note: lifetime parameter instantiated with the lifetime 'a as defined on the impl at 13:6
  --> $DIR/static-lifetime.rs:13:6
   |
LL | impl<'a, A: Clone> Arbitrary for ::std::borrow::Cow<'a, A> {} //~ ERROR lifetime bound
   |      ^^
   = 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`.