Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ edition: 2021
trait Has {
fn has() {}
}
trait HasNot {}
fn main() {
HasNot::has();
//~^ ERROR expected a type, found a trait