rust/tests/ui/nll/normalization-bounds.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
280 B
Rust
Raw Normal View History

// Check that lifetime bounds get checked the right way around with NLL enabled.
// check-pass
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() {}