mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
380 B
Rust
26 lines
380 B
Rust
// run-rustfix
|
|
|
|
pub trait Trait {}
|
|
|
|
pub struct Foo;
|
|
|
|
impl Trait for Foo {}
|
|
|
|
fn foo<'x, P>(
|
|
_post: P,
|
|
x: &'x Foo,
|
|
) -> &'x impl Trait {
|
|
x
|
|
}
|
|
|
|
pub fn bar<'t, T>(
|
|
//~^ HELP: consider adding an explicit lifetime bound...
|
|
post: T,
|
|
x: &'t Foo,
|
|
) -> &'t impl Trait {
|
|
foo(post, x)
|
|
//~^ ERROR: the parameter type `T` may not live long enough
|
|
}
|
|
|
|
fn main() {}
|