2021-05-16 18:33:41 +02:00
|
|
|
use std::ops::Deref;
|
|
|
|
trait Foo {
|
|
|
|
type Bar<'a>: Deref<Target = <Self>::Bar<Target = Self>>;
|
|
|
|
//~^ ERROR this associated type takes 1 lifetime argument but 0 lifetime arguments were supplied
|
2022-09-27 00:45:50 +00:00
|
|
|
//~| ERROR associated type bindings are not allowed here
|
2021-05-16 18:33:41 +02:00
|
|
|
//~| HELP add missing
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|