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.
A simple example
// error-pattern: what trait Foo { fn f(); } trait Bar : Foo { fn g(); } struct A { x: int } impl A : Bar { fn g() { } fn f() { } } impl A : Foo { fn f() { } } fn main() { }