blob: 8f2d29d6f17c2e68c78af865f6ff387d8fc39b8c [file] [log] [blame]
#![feature(rustc_attrs)]
#[rustc_outlives]
struct Foo<'a, 'b, T> { //~ ERROR rustc_outlives
field1: dyn Bar<'a, 'b, T>
}
trait Bar<'x, 's, U>
where U: 'x,
Self:'s
{}
fn main() {}