rust/src/test/ui/nll/normalization-bounds.rs
2018-12-25 21:08:33 -07:00

17 lines
294 B
Rust

// 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() {}