]> git.saurik.com Git - bison.git/blame - tests/input.at
Finish implementing --warnings=error, which should not be implied by
[bison.git] / tests / input.at
CommitLineData
087b9fdf 1# Checking the Bison scanner. -*- Autotest -*-
378f4bd8 2# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
9b2d0677
AD
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 2, or (at your option)
7# any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
0fb669f9
PE
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17# 02110-1301, USA.
9b2d0677
AD
18
19AT_BANNER([[Input Processing.]])
20
21# Mostly test that we are robust to mistakes.
22
6c35d22c 23
9b2d0677
AD
24## ------------ ##
25## Invalid $n. ##
26## ------------ ##
27
e9071366 28AT_SETUP([Invalid \$n and @n])
9b2d0677
AD
29
30AT_DATA([input.y],
31[[%%
bfcf1f3a 32exp: { $$ = $1 ; };
bfcf1f3a 33exp: { @$ = @1 ; };
9b2d0677
AD
34]])
35
36AT_CHECK([bison input.y], [1], [],
e9071366
AD
37[[input.y:2.13-14: integer out of range: `$1'
38input.y:3.13-14: integer out of range: `@1'
9b2d0677
AD
39]])
40
41AT_CLEANUP
9af3fbce
AD
42
43
44## -------------- ##
e776192e 45## Type Clashes. ##
9af3fbce
AD
46## -------------- ##
47
e776192e 48AT_SETUP([Type Clashes])
9af3fbce
AD
49
50AT_DATA([input.y],
ffa4ba3a
JD
51[[%union { int bar; }
52%token foo
9af3fbce
AD
53%type <bar> exp
54%%
ffa4ba3a 55exp: foo { $$; } foo { $2; } foo
9af3fbce
AD
56 | foo
57 | /* Empty. */
58 ;
59]])
60
ffa4ba3a
JD
61AT_CHECK([bison input.y], [1], [],
62[[input.y:5.12-13: $$ for the midrule at $2 of `exp' has no declared type
63input.y:5.24-25: $2 of `exp' has no declared type
64input.y:5.6-32: warning: type clash on default action: <bar> != <>
65input.y:6.6-8: warning: type clash on default action: <bar> != <>
66input.y:7.5: warning: empty rule for typed nonterminal, and no action
9af3fbce
AD
67]])
68
69AT_CLEANUP
5a08f1ce
AD
70
71
ffa4ba3a
JD
72# _AT_UNUSED_VALUES_DECLARATIONS()
73# --------------------------------------------
74# Generate the token, type, and destructor
75# declarations for the unused values tests.
378f4bd8 76
ffa4ba3a
JD
77m4_define([_AT_UNUSED_VALUES_DECLARATIONS],
78[[[%token <integer> INT;
79%type <integer> a b c d e f g h i j k l;
80%destructor { destroy ($$); } INT a b c d e f g h i j k l;]]])
378f4bd8 81
ffa4ba3a
JD
82
83# AT_CHECK_UNUSED_VALUES(DECLARATIONS_AFTER)
84# --------------------------------------------
85# Generate a grammar to test unused values,
86# compile it, run it. If DECLARATIONS_AFTER
87# is set, then the token, type, and destructor
88# declarations are generated after the rules
89# rather than before.
90
91m4_define([AT_CHECK_UNUSED_VALUES],
92[AT_DATA([input.y],
93m4_ifval($1, [
94
95
96], [_AT_UNUSED_VALUES_DECLARATIONS
97])[[%%
27622431 98start:
ffa4ba3a
JD
99 'a' a { $]2[ } | 'b' b { $]2[ } | 'c' c { $]2[ } | 'd' d { $]2[ } | 'e' e { $]2[ }
100| 'f' f { $]2[ } | 'g' g { $]2[ } | 'h' h { $]2[ } | 'i' i { $]2[ } | 'j' j { $]2[ }
101| 'k' k { $]2[ } | 'l' l { $]2[ }
378f4bd8 102;
27622431
PE
103
104a: INT | INT { } INT { } INT { };
105b: INT | /* empty */;
519d0004
JD
106c: INT | INT { $]1[ } INT { $<integer>2 } INT { $<integer>4 };
107d: INT | INT { } INT { $]1[ } INT { $<integer>2 };
ffa4ba3a
JD
108e: INT | INT { } INT { } INT { $]1[ };
109f: INT | INT { } INT { } INT { $]$[ = $]1[ + $]3[ + $]5[; };
ddc8ede1
PE
110g: INT | INT { $<integer>$; } INT { $<integer>$; } INT { };
111h: INT | INT { $<integer>$; } INT { $<integer>$ = $<integer>2; } INT { };
ffa4ba3a
JD
112i: INT | INT INT { } { $]$[ = $]1[ + $]2[; };
113j: INT | INT INT { $<integer>$ = 1; } { $]$[ = $]1[ + $]2[; };
ddc8ede1
PE
114k: INT | INT INT { $<integer>$; } { $<integer>$ = $<integer>3; } { };
115l: INT | INT { $<integer>$ = $<integer>1; } INT { $<integer>$ = $<integer>2 + $<integer>3; } INT { $<integer>$ = $<integer>4 + $<integer>5; };]]m4_ifval($1, [
ffa4ba3a
JD
116_AT_UNUSED_VALUES_DECLARATIONS])
117)
118
119AT_CHECK([bison input.y], [0], [],
120[[input.y:11.10-32: warning: unset value: $]$[
121input.y:11.10-32: warning: unused value: $]1[
122input.y:11.10-32: warning: unused value: $]3[
123input.y:11.10-32: warning: unused value: $]5[
124input.y:12.9: warning: empty rule for typed nonterminal, and no action
519d0004
JD
125input.y:13.14-19: warning: unset value: $$
126input.y:13.25-39: warning: unset value: $$
127input.y:13.10-59: warning: unset value: $]$[
128input.y:13.10-59: warning: unused value: $]3[
129input.y:13.10-59: warning: unused value: $]5[
130input.y:14.14-16: warning: unset value: $$
131input.y:14.10-47: warning: unset value: $]$[
132input.y:14.10-47: warning: unused value: $]3[
133input.y:14.10-47: warning: unused value: $]5[
ffa4ba3a
JD
134input.y:15.10-36: warning: unset value: $]$[
135input.y:15.10-36: warning: unused value: $]3[
136input.y:15.10-36: warning: unused value: $]5[
ddc8ede1
PE
137input.y:17.10-58: warning: unset value: $]$[
138input.y:17.10-58: warning: unused value: $]1[
139input.y:17.10-58: warning: unused value: $]2[
140input.y:17.10-58: warning: unused value: $]3[
141input.y:17.10-58: warning: unused value: $]4[
142input.y:17.10-58: warning: unused value: $]5[
143input.y:18.10-72: warning: unset value: $]$[
144input.y:18.10-72: warning: unused value: $]1[
145input.y:18.10-72: warning: unused value: $]3[
146input.y:18.10-72: warning: unused value: $]4[
147input.y:18.10-72: warning: unused value: $]5[
ffa4ba3a 148input.y:20.10-55: warning: unused value: $]3[
ddc8ede1
PE
149input.y:21.10-68: warning: unset value: $]$[
150input.y:21.10-68: warning: unused value: $]1[
151input.y:21.10-68: warning: unused value: $]2[
152input.y:21.10-68: warning: unused value: $]4[
ffa4ba3a 153]])])
27622431 154
378f4bd8 155
ffa4ba3a
JD
156## --------------- ##
157## Unused values. ##
158## --------------- ##
159
160AT_SETUP([Unused values])
161AT_CHECK_UNUSED_VALUES
162AT_CLEANUP
163
164
165## ------------------------------------------ ##
166## Unused values before symbol declarations. ##
167## ------------------------------------------ ##
84866159 168
ffa4ba3a
JD
169AT_SETUP([Unused values before symbol declarations])
170AT_CHECK_UNUSED_VALUES([1])
84866159 171AT_CLEANUP
378f4bd8
AD
172
173
ec5479ce
JD
174## --------------------------------------------- ##
175## Default %printer and %destructor redeclared. ##
176## --------------------------------------------- ##
177
178AT_SETUP([Default %printer and %destructor redeclared])
179
180AT_DATA([[input.y]],
12e35840
JD
181[[%destructor { destroy ($$); } <*> <*>
182%printer { destroy ($$); } <*> <*>
ec5479ce 183
12e35840
JD
184%destructor { destroy ($$); } <*>
185%printer { destroy ($$); } <*>
186
187%destructor { destroy ($$); } <!> <!>
188%printer { destroy ($$); } <!> <!>
189
190%destructor { destroy ($$); } <!>
191%printer { destroy ($$); } <!>
ec5479ce
JD
192
193%%
194
195start: ;
196
12e35840
JD
197%destructor { destroy ($$); } <*>;
198%printer { destroy ($$); } <*>;
199
200%destructor { destroy ($$); } <!>;
201%printer { destroy ($$); } <!>;
ec5479ce
JD
202]])
203
204AT_CHECK([bison input.y], [1], [],
12e35840 205[[input.y:1.13-29: redeclaration for default tagged %destructor
b2a0b7ca 206input.y:1.13-29: previous declaration
12e35840 207input.y:2.10-26: redeclaration for default tagged %printer
b2a0b7ca 208input.y:2.10-26: previous declaration
12e35840 209input.y:4.13-29: redeclaration for default tagged %destructor
ec5479ce 210input.y:1.13-29: previous declaration
12e35840 211input.y:5.10-26: redeclaration for default tagged %printer
ec5479ce 212input.y:2.10-26: previous declaration
12e35840
JD
213input.y:7.13-29: redeclaration for default tagless %destructor
214input.y:7.13-29: previous declaration
215input.y:8.10-26: redeclaration for default tagless %printer
216input.y:8.10-26: previous declaration
217input.y:10.13-29: redeclaration for default tagless %destructor
218input.y:7.13-29: previous declaration
219input.y:11.10-26: redeclaration for default tagless %printer
220input.y:8.10-26: previous declaration
221input.y:17.13-29: redeclaration for default tagged %destructor
ec5479ce 222input.y:4.13-29: previous declaration
12e35840 223input.y:18.10-26: redeclaration for default tagged %printer
ec5479ce 224input.y:5.10-26: previous declaration
12e35840
JD
225input.y:20.13-29: redeclaration for default tagless %destructor
226input.y:10.13-29: previous declaration
227input.y:21.10-26: redeclaration for default tagless %printer
228input.y:11.10-26: previous declaration
ec5479ce
JD
229]])
230
231AT_CLEANUP
232
233
b2a0b7ca
JD
234## ---------------------------------------------- ##
235## Per-type %printer and %destructor redeclared. ##
236## ---------------------------------------------- ##
237
238AT_SETUP([Per-type %printer and %destructor redeclared])
239
240AT_DATA([[input.y]],
241[[%destructor { destroy ($$); } <field1> <field2>
242%printer { destroy ($$); } <field1> <field2>
243
244%destructor { destroy ($$); } <field1> <field1>
245%printer { destroy ($$); } <field2> <field2>
246
247%%
248
249start: ;
250
251%destructor { destroy ($$); } <field2> <field1>;
252%printer { destroy ($$); } <field2> <field1>;
253]])
254
255AT_CHECK([bison input.y], [1], [],
256[[input.y:4.13-29: %destructor redeclaration for <field1>
257input.y:1.13-29: previous declaration
258input.y:4.13-29: %destructor redeclaration for <field1>
259input.y:4.13-29: previous declaration
260input.y:5.10-26: %printer redeclaration for <field2>
261input.y:2.10-26: previous declaration
262input.y:5.10-26: %printer redeclaration for <field2>
263input.y:5.10-26: previous declaration
264input.y:11.13-29: %destructor redeclaration for <field1>
265input.y:4.13-29: previous declaration
266input.y:11.13-29: %destructor redeclaration for <field2>
267input.y:1.13-29: previous declaration
268input.y:12.10-26: %printer redeclaration for <field1>
269input.y:2.10-26: previous declaration
270input.y:12.10-26: %printer redeclaration for <field2>
271input.y:5.10-26: previous declaration
272]])
273
274AT_CLEANUP
275
276
ec5479ce
JD
277## ---------------------------------------- ##
278## Unused values with default %destructor. ##
279## ---------------------------------------- ##
280
281AT_SETUP([Unused values with default %destructor])
282
283AT_DATA([[input.y]],
12e35840
JD
284[[%destructor { destroy ($$); } <!>
285%type <tag> tagged
286
287%%
288
289start: end end tagged tagged { $<tag>1; $3; } ;
290end: { } ;
291tagged: { } ;
292]])
293
294AT_CHECK([bison input.y], [0], [],
295[[input.y:6.8-45: warning: unset value: $$
296input.y:6.8-45: warning: unused value: $2
297input.y:7.6-8: warning: unset value: $$
298]])
299
300AT_DATA([[input.y]],
301[[%destructor { destroy ($$); } <*>
302%type <tag> tagged
ec5479ce
JD
303
304%%
305
12e35840
JD
306start: end end tagged tagged { $<tag>1; $3; } ;
307end: { } ;
308tagged: { } ;
ec5479ce
JD
309]])
310
311AT_CHECK([bison input.y], [0], [],
12e35840
JD
312[[input.y:6.8-45: warning: unused value: $4
313input.y:8.9-11: warning: unset value: $$
ec5479ce
JD
314]])
315
316AT_CLEANUP
317
318
b2a0b7ca
JD
319## ----------------------------------------- ##
320## Unused values with per-type %destructor. ##
321## ----------------------------------------- ##
322
323AT_SETUP([Unused values with per-type %destructor])
324
325AT_DATA([[input.y]],
326[[%destructor { destroy ($$); } <field1>
327%type <field1> start end
328
329%%
330
331start: end end { $1; } ;
332end: { } ;
333]])
334
335AT_CHECK([bison input.y], [0], [],
336[[input.y:6.8-22: warning: unset value: $$
337input.y:6.8-22: warning: unused value: $2
338input.y:7.6-8: warning: unset value: $$
339]])
340
341AT_CLEANUP
342
343
df09ef2e
AD
344## ---------------------- ##
345## Incompatible Aliases. ##
346## ---------------------- ##
347
348AT_SETUP([Incompatible Aliases])
349
350AT_DATA([input.y],
351[[%token foo "foo"
352
353%type <bar> foo
354%printer {bar} foo
355%destructor {bar} foo
356%left foo
357
358%type <baz> "foo"
359%printer {baz} "foo"
360%destructor {baz} "foo"
361%left "foo"
362
363%%
364exp: foo;
365]])
366
367AT_CHECK([bison input.y], [1], [],
368[[input.y:8.7-11: %type redeclaration for foo
dd60572a 369input.y:3.7-11: previous declaration
df09ef2e 370input.y:10.13-17: %destructor redeclaration for foo
dd60572a 371input.y:5.13-17: previous declaration
e2a8c0f5 372input.y:9.10-14: %printer redeclaration for foo
dd60572a 373input.y:4.10-14: previous declaration
df09ef2e 374input.y:11.1-5: %left redeclaration for foo
dd60572a 375input.y:6.1-5: previous declaration
df09ef2e
AD
376]])
377
378AT_CLEANUP
379
380
5a08f1ce
AD
381
382## ----------------------- ##
383## Torturing the Scanner. ##
384## ----------------------- ##
385
386# Be sure to compile and run, so that the C compiler checks what
387# we do.
388
389AT_SETUP([Torturing the Scanner])
390
0baf7c50
PE
391
392AT_DATA([input.y], [])
393AT_CHECK([bison input.y], [1], [],
4a678af8 394[[input.y:1.1: syntax error, unexpected end of file
0baf7c50
PE
395]])
396
397
e9071366 398AT_DATA([input.y],
b2ddc3f3
AD
399[{}
400])
401AT_CHECK([bison input.y], [1], [],
4a678af8 402[[input.y:1.1-2: syntax error, unexpected {...}
b2ddc3f3
AD
403]])
404
405
9501dc6e 406AT_DATA_GRAMMAR([input.y],
5a08f1ce
AD
407[[%{
408/* This is seen in GCC: a %{ and %} in middle of a comment. */
409const char *foo = "So %{ and %} can be here too.";
410
dda7a53e
PE
411#if 0
412/* These examples test Bison while not stressing C compilers too much.
413 Many C compilers mishandle backslash-newlines, so this part of the
414 test is inside "#if 0". The comment and string are written so that
415 the "#endif" will be seen regardless of the C compiler bugs that we
416 know about, namely:
417
418 HP C (as of late 2002) mishandles *\[newline]\[newline]/ within a
419 comment.
420
421 The Apple Darwin compiler (as of late 2002) mishandles
422 \\[newline]' within a character constant.
423
424 */
425
206fe6a5 426/\
dda7a53e
PE
427* A comment with backslash-newlines in it. %} *\
428\
206fe6a5 429/
dda7a53e 430/* { Close the above comment, if the C compiler mishandled it. */
206fe6a5
PE
431
432char str[] = "\\
433" A string with backslash-newlines in it %{ %} \\
dda7a53e 434\
206fe6a5
PE
435"";
436
dda7a53e 437char apostrophe = '\'';
206fe6a5
PE
438#endif
439
5a08f1ce 440#include <stdio.h>
c4bd5bf7 441#include <stdlib.h>
5a08f1ce
AD
442%}
443/* %{ and %} can be here too. */
444
445%{
446/* Exercise pre-prologue dependency to %union. */
051ade83 447typedef int value;
5a08f1ce
AD
448%}
449
450/* Exercise M4 quoting: '@:>@@:>@', 0. */
451
452/* Also exercise %union. */
453%union
454{
051ade83 455 value ival; /* A comment to exercise an old bug. */
5a08f1ce
AD
456};
457
458
459/* Exercise post-prologue dependency to %union. */
460%{
051ade83 461static YYSTYPE value_as_yystype (value val);
5a08f1ce
AD
462
463/* Exercise quotes in declarations. */
464char quote[] = "@:>@@:>@,";
465%}
466
467%{
468static void yyerror (const char *s);
469static int yylex (void);
470%}
471
206fe6a5 472%type <ival> '@<:@'
5a08f1ce
AD
473
474/* Exercise quotes in strings. */
3dc4c5fa 475%token FAKE "fake @<:@@:>@ \a\b\f\n\r\t\v\"\'\?\\\u005B\U0000005c ??!??'??(??)??-??/??<??=??> \x1\1"
5a08f1ce
AD
476
477%%
206fe6a5 478/* Exercise M4 quoting: '@:>@@:>@', @<:@, 1. */
087b9fdf 479exp: '@<:@' '\1' two '$' '@' '{' oline output.or.oline.opt
5a08f1ce
AD
480 {
481 /* Exercise quotes in braces. */
482 char tmp[] = "@<:@%c@:>@,\n";
483 printf (tmp, $1);
484 }
485;
5b7f88c7
PE
486
487two: '\x000000000000000000000000000000000000000000000000000000000000000000002';
488oline: '@' 'o' 'l' 'i' 'n' 'e' '@' '_' '_' 'o' 'l' 'i' 'n' 'e' '_' '_';
087b9fdf 489output.or.oline.opt: ;|oline;;|output;;;
5b7f88c7 490output: '#' 'o' 'u' 't' 'p' 'u' 't' ' ';
5a08f1ce 491%%
206fe6a5 492/* Exercise M4 quoting: '@:>@@:>@', @<:@, 2. */
5a08f1ce
AD
493
494static YYSTYPE
051ade83 495value_as_yystype (value val)
5a08f1ce
AD
496{
497 YYSTYPE res;
498 res.ival = val;
499 return res;
500}
501
502static int
503yylex (void)
504{
cf806753 505 static char const input[] = "@<:@\1\2$@{@oline@__@&t@oline__\
5b7f88c7
PE
506#output "; /* "
507 */
cf806753
PE
508 static size_t toknum;
509 if (! (toknum < sizeof input))
510 abort ();
511 yylval = value_as_yystype (input[toknum]);
512 return input[toknum++];
5a08f1ce
AD
513}
514
515static void
516yyerror (const char *msg)
517{
518 fprintf (stderr, "%s\n", msg);
519}
520]])
521
9501dc6e
AD
522# Pacify Emacs'font-lock-mode: "
523
5a08f1ce 524AT_DATA([main.c],
051ade83 525[[typedef int value;
5a08f1ce
AD
526#include "input.h"
527
528int yyparse (void);
529
530int
531main (void)
532{
533 return yyparse ();
534}
535]])
536
b56471a6 537AT_CHECK([bison -d -v -o input.c input.y])
efc6bf1b
PE
538AT_COMPILE([input.o], [-c input.c])
539AT_COMPILE([main.o], [-c main.c])
540AT_COMPILE([input], [input.o main.o])
1154cced 541AT_PARSER_CHECK([./input], 0,
206fe6a5 542[[[@<:@],
5a08f1ce
AD
543]])
544
545AT_CLEANUP
e59adf8f
PE
546
547
548## ---------------------- ##
549## Typed symbol aliases. ##
550## ---------------------- ##
551
552AT_SETUP([Typed symbol aliases])
553
554# Bison 2.0 broke typed symbol aliases - ensure they work.
555
556AT_DATA_GRAMMAR([input.y],
557[[%union
558{
559 int val;
560};
561%token <val> MY_TOKEN "MY TOKEN"
562%type <val> exp
563%%
564exp: "MY TOKEN";
565%%
566]])
567
568AT_CHECK([bison -o input.c input.y])
569
570AT_CLEANUP
b50d2359
AD
571
572
573## --------- ##
574## Require. ##
575## --------- ##
576
577m4_define([AT_CHECK_REQUIRE],
578[AT_SETUP([Require $1])
579AT_DATA_GRAMMAR([input.y],
580[[%require "$1";
581%%
582empty_file:;
583]])
584AT_CHECK([bison -o input.c input.y], $2, [], ignore)
585AT_CLEANUP
586])
587
588AT_CHECK_REQUIRE(1.0, 0)
589AT_CHECK_REQUIRE(AT_PACKAGE_VERSION, 0)
590## FIXME: Some day augment this version number.
9b8a5ce0 591AT_CHECK_REQUIRE(100.0, 63)
1f6b3679
JD
592
593
594## ------------------------------------- ##
595## String aliases for character tokens. ##
596## ------------------------------------- ##
597
598AT_SETUP([String aliases for character tokens])
599
600# Bison once thought a character token and its alias were different symbols
601# with the same user token number.
602
603AT_DATA_GRAMMAR([input.y],
604[[%token 'a' "a"
605%%
606start: 'a';
607%%
608]])
609
610AT_CHECK([bison -o input.c input.y])
611
612AT_CLEANUP
47aee066
JD
613
614
615## --------------------- ##
616## Unclosed constructs. ##
617## --------------------- ##
618
619AT_SETUP([Unclosed constructs])
620
621# Bison's scan-gram.l once forgot to STRING_FINISH some unclosed constructs, so
622# they were prepended to whatever it STRING_GROW'ed next. It also threw them
623# away rather than returning them to the parser. The effect was confusing
624# subsequent error messages.
625
626AT_DATA([input.y],
627[[%token A "a
628%token B "b"
629%token AB "ab" // Used to complain that "ab" was already used.
630%token C '1
631%token TWO "2"
632%token TICK_TWELVE "'12" // Used to complain that "'12" was already used.
633
634%%
635
636start: ;
637
638// Used to report a syntax error because it didn't see any kind of symbol
639// identifier.
640%type <f> 'a
641;
642%type <f> "a
643;
644// Used to report a syntax error because it didn't see braced code.
645%destructor { free ($$)
646]])
647
648AT_CHECK([bison -o input.c input.y], 1, [],
649[[input.y:1.10-2.0: missing `"' at end of line
650input.y:4.10-5.0: missing `'' at end of line
651input.y:14.11-15.0: missing `'' at end of line
652input.y:16.11-17.0: missing `"' at end of line
653input.y:19.13-20.0: missing `}' at end of file
3be03b13 654input.y:20.1: syntax error, unexpected end of file
47aee066
JD
655]])
656
657AT_CLEANUP
4d7370cb
JD
658
659
660## ------------------------- ##
661## %start after first rule. ##
662## ------------------------- ##
663
664AT_SETUP([%start after first rule])
665
666# Bison once complained that a %start after the first rule was a redeclaration
667# of the start symbol.
668
669AT_DATA([input.y],
670[[%%
671false_start: ;
672start: false_start ;
673%start start;
674]])
675
676AT_CHECK([bison -o input.c input.y])
677
678AT_CLEANUP