blob: ebc19d7cc83506a0f55c7434deba53b59c74260b [file] [log] [blame]
// Check that lifetime bounds get checked the right way around with NLL enabled.
//run-pass
#![feature(nll)]
trait Visitor<'d> {
type Value;
}
impl<'a, 'd: 'a> Visitor<'d> for &'a () {
type Value = ();
}
fn visit_seq<'d: 'a, 'a>() -> <&'a () as Visitor<'d>>::Value {}
fn main() {}