9 AT_SETUP(Duplicate string)
11 AT_DATA([duplicate.y],
12 [[/* `Bison -v' used to dump core when two tokens are defined with the same
13 string, as LE and GE below. */
20 exp: '(' exp ')' | NUM ;
24 AT_CHECK([bison -v duplicate.y -o duplicate.c], 0, ignore, ignore)
26 AT_CLEANUP(duplicate.*)