diff options
Diffstat (limited to 'test/err_syntax21.y')
-rw-r--r-- | test/err_syntax21.y | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/err_syntax21.y b/test/err_syntax21.y new file mode 100644 index 0000000..ba6ec70 --- /dev/null +++ b/test/err_syntax21.y @@ -0,0 +1,36 @@ +%{ +int yylex(void); +static void yyerror(const char *); +%} + +%type <check> expr +%type <rechk> recur + +%% + +expr : '(' recur ')' + { foo( $$ = $0 ); } + ; + +%% + +#include <stdio.h> + +int +main(void) +{ + printf("yyparse() = %d\n", yyparse()); + return 0; +} + +int +yylex(void) +{ + return -1; +} + +static void +yyerror(const char* s) +{ + printf("%s\n", s); +} |