]> git.saurik.com Git - bison.git/blobdiff - tests/semantic.at
* tests/input.at (Invalid $n, Invalid @n): Add the ending `;'.
[bison.git] / tests / semantic.at
index b03329d35eb23da412bfd25dc4c485195ff512b9..9f88352b7cb8b3aba622d45c03b21c2149be5ac1 100644 (file)
@@ -38,7 +38,7 @@ AT_DATA([input.y],
 %%
 exp: exp '+' exp { $$ = $1 + $3 }
    | exp '/' exp %guard { if ($3 == 0) yyerror = 1 } { $$ = $1 / $3 }
-   | INT
+   | INT;
 %%
 ]])