2017-12-03 06:01:09 -06:00
|
|
|
#![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
|
2017-12-03 06:01:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2017-12-03 06:01:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn outlives_region<'a, 'b, T>(x: Box<T>) -> Box<Debug + 'a>
|
|
|
|
where
|
|
|
|
T: 'b + Debug,
|
|
|
|
'b: 'a,
|
|
|
|
{
|
|
|
|
x
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|