mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
360 B
Rust
17 lines
360 B
Rust
// Check that we error when a bound from the impl is not satisfied when
|
|
// normalizing an associated type.
|
|
|
|
trait Visitor<'d> {
|
|
type Value;
|
|
}
|
|
|
|
impl<'a, 'd: 'a> Visitor<'d> for &'a () {
|
|
type Value = ();
|
|
}
|
|
|
|
fn visit_seq<'d, 'a: 'd>() -> <&'a () as Visitor<'d>>::Value {}
|
|
//~^ ERROR lifetime may not live long enough
|
|
//~| ERROR cannot infer
|
|
|
|
fn main() {}
|