diff --git a/src/parser.y b/src/parser.y index f7f73c2..3a7ccff 100644 --- a/src/parser.y +++ b/src/parser.y @@ -226,9 +226,8 @@ typeinfoN : /* empty */ } ; -label : /* empty */ - { $$ = NULL; } - | '_' ID +/* Previously, the label could be omitted. It is now required. */ +label : '_' ID { $$ = $2; } ;