blob: aa5e79befe9c875275db0ff8371af863db428cef [file] [log] [blame] [edit]
trait Foo {
type Arg<'a>;
}
struct Bar<T>(T)
where
for<'a> T: Foo<Arg<'a> = ()>;