mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
15 lines
281 B
Rust
15 lines
281 B
Rust
// 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() {}
|