trait Trait {
fn f(u8);
// ^^
}
This syntax has been removed in the 2018 edition. If someone still has this syntax in their code, there is a clear way to transition to syntax that work in both editions by prepending _: so we no longer need Syn to parse the old syntax.
This syntax has been removed in the 2018 edition. If someone still has this syntax in their code, there is a clear way to transition to syntax that work in both editions by prepending
_:so we no longer need Syn to parse the old syntax.