2018-04-18 21:26:21 -05:00
|
|
|
#![feature(rustc_attrs)]
|
2017-10-15 00:13:56 -05:00
|
|
|
|
2018-04-18 21:26:21 -05:00
|
|
|
#[rustc_outlives]
|
2018-12-25 09:56:47 -06:00
|
|
|
struct Foo<'a, 'b, T> { //~ ERROR rustc_outlives
|
2019-05-28 13:46:13 -05:00
|
|
|
field1: dyn Bar<'a, 'b, T>
|
2017-10-15 00:13:56 -05:00
|
|
|
}
|
|
|
|
|
2018-04-18 21:26:21 -05:00
|
|
|
trait Bar<'x, 's, U>
|
|
|
|
where U: 'x,
|
|
|
|
Self:'s
|
|
|
|
{}
|
2017-10-15 00:13:56 -05:00
|
|
|
|
|
|
|
fn main() {}
|