2022-07-24 14:33:26 -05:00
|
|
|
error[E0308]: const not compatible with trait
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/associated-const-impl-wrong-lifetime.rs:7:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | const NAME: &'a str = "unit";
|
2022-09-30 11:56:07 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ lifetime mismatch
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&'static str`
|
|
|
|
found reference `&'a str`
|
2021-10-05 07:11:51 -05:00
|
|
|
note: the lifetime `'a` as defined here...
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/associated-const-impl-wrong-lifetime.rs:6:6
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | impl<'a> Foo for &'a () {
|
2018-06-27 18:44:39 -05:00
|
|
|
| ^^
|
2017-12-10 13:47:55 -06:00
|
|
|
= note: ...does not necessarily outlive the static lifetime
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|