mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
280 B
Rust
16 lines
280 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() {}
|