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 should not compile but it does.
test.rs:
trait Foo { fn foo(); }
test2.rs:
extern mod test; struct Bar; impl test::Foo for Bar { fn foo() {} }