rust/tests/ui/nll/ty-outlives/ty-param-fn.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
555 B
Rust
Raw Normal View History

#![allow(warnings)]
use std::fmt::Debug;
fn no_region<'a, T>(x: Box<T>) -> Box<Debug + 'a>
where
T: Debug,
{
x
2018-08-31 12:27:11 -05:00
//~^ ERROR the parameter type `T` may not live long enough
}
fn correct_region<'a, T>(x: Box<T>) -> Box<Debug + 'a>
where
T: 'a + Debug,
{
x
}
fn wrong_region<'a, 'b, T>(x: Box<T>) -> Box<Debug + 'a>
where
T: 'b + Debug,
{
x
2018-08-31 12:27:11 -05:00
//~^ ERROR the parameter type `T` may not live long enough
}
fn outlives_region<'a, 'b, T>(x: Box<T>) -> Box<Debug + 'a>
where
T: 'b + Debug,
'b: 'a,
{
x
}
fn main() {}