You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
504 B
12 lines
504 B
error: non-static lifetimes are not allowed in the source of an error, because std::error::Error requires the source is dyn Error + 'static
|
|
--> $DIR/lifetime.rs:6:26
|
|
|
|
|
6 | struct Error<'a>(#[from] Inner<'a>);
|
|
| ^^^^^^^^^
|
|
|
|
error: non-static lifetimes are not allowed in the source of an error, because std::error::Error requires the source is dyn Error + 'static
|
|
--> $DIR/lifetime.rs:15:17
|
|
|
|
|
15 | Foo(#[from] Generic<&'a str>),
|
|
| ^^^^^^^^^^^^^^^^
|