]> git.saurik.com Git - bison.git/blobdiff - tests/input.at
bison: catch bad symbol names.
[bison.git] / tests / input.at
index 7eaafaae7089ae3df79c11b3d125ee4b3104b9fe..4345eddd36f8160646a9d78d5e4bc299d9ebed0d 100644 (file)
@@ -662,13 +662,13 @@ AT_COMPILE([input.o], [-c input.c])
 # Digits cannot.
 AT_DATA_GRAMMAR([input.y],
 [[%token .GOOD
-%token -GOOD
-%token 1NV4L1D
+         -GOOD
+         1NV4L1D
 %%
 start: .GOOD -GOOD
 ]])
 AT_BISON_CHECK([-o input.c input.y], [1], [],
-[[input.y:11.8: syntax error, unexpected integer, expecting char or identifier or type
+[[input.y:11.10-16: invalid identifier: `1NV4L1D'
 ]])
 
 AT_CLEANUP