Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
lifetimes
/
suggest-introducing-and-adding-missing-lifetime.fixed
blob: d3616c0b1750da85f4c3a64a78d657ef14386394 [
file
] [
log
] [
blame
]
//@ run-rustfix
#![allow(warnings)]
fn no_restriction
<
'a, T: '
a
>(
x
:
&
'a ()) -> &'
a
()
{
with_restriction
::<
T
>(
x
)
//~ ERROR the parameter type `T` may not live long enough
}
fn with_restriction
<
'b, T: '
b
>(
x
:
&
'b ()) -> &'
b
()
{
x
}
fn main
()
{}