The newly-added (perl 5.31.3) core function of parse_subsignature() is for parsing the inside contents of a sub signature; for example it will extract the $x, $y part of
sub foo($x, $y) { $x + $y }
When facing an empty paren () it however fails; it increments the value of PL_parser->error_count despite yielding a valid op tree for the empty sig. This is currently causing a CPAN module failure:
https://rt.cpan.org/Ticket/Display.html?id=132284