mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
302 B
Rust
16 lines
302 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
|
|
|
|
fn main() {}
|