Allow placeholder parameters in trait fn defs
This commit is contained in:
parent
595a2f9900
commit
234b65fd61
@ -79,7 +79,7 @@ fn value_parameter(p: &mut Parser, flavor: Flavor) {
|
||||
let la1 = p.nth(1);
|
||||
let la2 = p.nth(2);
|
||||
let la3 = p.nth(3);
|
||||
if la0 == IDENT && la1 == COLON
|
||||
if (la0 == IDENT || la0 == UNDERSCORE) && la1 == COLON
|
||||
|| la0 == AMP && la1 == IDENT && la2 == COLON
|
||||
|| la0 == AMP && la1 == MUT_KW && la2 == IDENT && la3 == COLON
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user