+2001-11-02 Akim Demaille <akim@epita.fr>
+
+ * tests/regression.at (Mixing %token styles): New test.
+
2001-11-02 Akim Demaille <akim@epita.fr>
* src/reader.c (parse_thong_decl): Formatting changes.
+## ---------------------- ##
+## Mixing %token styles. ##
+## ---------------------- ##
+
+
+AT_SETUP([Mixing %token styles])
+
+# Taken from the documentation.
+AT_DATA([input.y],
+[[%token <operator> OR "||"
+%token <operator> LE 134 "<="
+%left OR "<="
+%%
+exp: ;
+%%
+]])
+
+AT_CHECK([bison -v input.y -o input.c], 0, ignore, ignore)
+
+AT_CLEANUP([input.*])
+
+
+
## ---------------------- ##
## %union and --defines. ##
## ---------------------- ##