diff options
-rw-r--r-- | tests/regression.at | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/regression.at b/tests/regression.at index bf0b4754..aabe8515 100644 --- a/tests/regression.at +++ b/tests/regression.at @@ -1325,9 +1325,9 @@ S: A B A A B A A A A B A A A A A A A B C C A A A A A A A A A A A A B ; // ^ ^ ^ // LAC reallocs -A: 'a' | /*empty*/ { printf ("inconsistent default reduction\n"); } ; +A: 'a' | %empty { printf ("inconsistent default reduction\n"); } ; B: 'b' ; -C: /*empty*/ { printf ("consistent default reduction\n"); } ; +C: %empty { printf ("consistent default reduction\n"); } ; %% ]AT_YYERROR_DEFINE[ @@ -1405,7 +1405,7 @@ AT_DATA_GRAMMAR([input.y], %% S: A A A A A A A A A ; -A: /*empty*/ | 'a' ; +A: %empty | 'a' ; %% ]AT_YYERROR_DEFINE[ |