mirror of https://github.com/rust-lang/rust.git
20 lines
618 B
Plaintext
20 lines
618 B
Plaintext
error[E0477]: the type `&'a i32` does not fulfill the required lifetime
|
|
--> $DIR/specialize_with_generalize_lifetimes.rs:20:1
|
|
|
|
|
LL | impl<'a> Tr for &'a i32 {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: type must satisfy the static lifetime
|
|
|
|
error[E0477]: the type `Wrapper<'a>` does not fulfill the required lifetime
|
|
--> $DIR/specialize_with_generalize_lifetimes.rs:31:1
|
|
|
|
|
LL | impl<'a> Tr for Wrapper<'a> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: type must satisfy the static lifetime
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0477`.
|