Add test for unnamed argument in function pointer
This commit is contained in:
@@ -114,6 +114,9 @@ fn value_parameter(p: &mut Parser, flavor: Flavor) {
|
||||
// test fn_pointer_param_ident_path
|
||||
// type Foo = fn(Bar::Baz);
|
||||
// type Qux = fn(baz: Bar::Baz);
|
||||
|
||||
// test fn_pointer_unnamed_arg
|
||||
// type Foo = fn(_: bar);
|
||||
Flavor::FnPointer => {
|
||||
if (p.at(IDENT) || p.at(UNDERSCORE)) && p.nth(1) == T![:] && !p.nth_at(1, T![::]) {
|
||||
patterns::pattern_single(p);
|
||||
|
||||
Reference in New Issue
Block a user