We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This typechecks:
pub trait Foo { fn foo<E=<Self as Bar>::A>(_: E) { } } pub trait Bar { type A; } fn main() { }
Which doesn't really make a lot of sense and seems like it could be a backwards compatibility footgun.