struct x() {
}
Thanks for the report. The problem was that
declarator()
was allowing an abstract function declarator (struct x()
, i.e. function with unspecified arguments returningstruct x
), even whenallowabstract
was false.Fixed by 87553780.