Remove building with NOCRYPTO option
[minix3.git] / external / bsd / byacc / dist / test / err_syntax20.y
blobc3a3d49299b1655f9e933a38bba5ecd85897ded2
1 /* $NetBSD: err_syntax20.y,v 1.1.1.1 2015/01/03 22:58:23 christos Exp $ */
3 %{
4 int yylex(void);
5 static void yyerror(const char *);
6 %}
8 %type <check> expr
9 %type <rechk> recur
13 expr : '(' recur ')'
14 { $2 = 3; }
19 #include <stdio.h>
21 int
22 main(void)
24 printf("yyparse() = %d\n", yyparse());
25 return 0;
28 int
29 yylex(void)
31 return -1;
34 static void
35 yyerror(const char* s)
37 printf("%s\n", s);