mirror of https://github.com/rust-lang/rust
15 lines
605 B
Rust
15 lines
605 B
Rust
use std::ops::Deref;
|
|
trait Foo {
|
|
type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
|
|
//~^ ERROR associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
|
|
//~| HELP add missing
|
|
//~| ERROR associated item constraints are not allowed here
|
|
//~| HELP consider removing this associated item binding
|
|
//~| ERROR associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
|
|
//~| HELP add missing
|
|
//~| ERROR associated item constraints are not allowed here
|
|
//~| HELP consider removing this associated item binding
|
|
}
|
|
|
|
fn main() {}
|