mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
566 B
Plaintext
19 lines
566 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/E0308-2.rs:9:13
|
|
|
|
|
LL | impl Eq for &dyn DynEq {}
|
|
| ^^^^^^^^^^ lifetime mismatch
|
|
|
|
|
= note: expected trait `<&dyn DynEq as PartialEq>`
|
|
found trait `<&(dyn DynEq + 'static) as PartialEq>`
|
|
note: the anonymous lifetime as defined here...
|
|
--> $DIR/E0308-2.rs:9:13
|
|
|
|
|
LL | impl Eq for &dyn DynEq {}
|
|
| ^
|
|
= note: ...does not necessarily outlive the static lifetime
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|