blob: 5d2825ef2d670cd65ad1a137a9d19e9996e94a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Check that lifetime bounds get checked the right way around with NLL enabled.
//run-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() {}
|