Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
trait TraitNotAStruct {}
fn main() {
TraitNotAStruct{ value: 0 };
//~^ ERROR expected struct, variant or union type, found trait `TraitNotAStruct`
}