summaryrefslogtreecommitdiff
path: root/tests/glr-regression.at
diff options
context:
space:
mode:
Diffstat (limited to 'tests/glr-regression.at')
-rw-r--r--tests/glr-regression.at6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/glr-regression.at b/tests/glr-regression.at
index b80ea2d1..1d4a5581 100644
--- a/tests/glr-regression.at
+++ b/tests/glr-regression.at
@@ -591,7 +591,7 @@ AT_DATA_GRAMMAR([glr-regr7.y],
start:
stack1 start
| stack2 start
- | /* empty */
+ | %empty
;
stack1: 'a' ;
stack2: 'a' ;
@@ -680,11 +680,11 @@ InterfaceDeclaration : OptConstantWord %dprec 1
| OptSignalWord %dprec 2
;
-OptConstantWord : /* empty */
+OptConstantWord : %empty
| T_CONSTANT
;
-OptSignalWord : /* empty */
+OptSignalWord : %empty
{ printf("empty: %d/%d\n", @$.first_column, @$.last_column); }
| T_SIGNAL
;