]> git.saurik.com Git - bison.git/blobdiff - tests/input.at
2007-01-30 Paolo Bonzini <bonzini@gnu.org>
[bison.git] / tests / input.at
index f24f489cc6a58238b1152b1af33b605957ae207b..d21ca41dacf0f8d74539db14b454ddfba3bf67d9 100644 (file)
@@ -820,3 +820,23 @@ input.y:5.9-16: warning: %define variable `special2' is not used
 ]])
 
 AT_CLEANUP
+
+## --------------------------- ##
+## Boolean %define variables.  ##
+## --------------------------- ##
+
+AT_SETUP([Boolean %define variables])
+
+AT_DATA([Input.y],
+[[%language "Java"
+%define public "maybe"
+%define parser_class_name "Input"
+%%
+start: ;
+]])
+
+AT_CHECK([[bison Input.y]], [1], [],
+[[Input.y: invalid value for %define variable `public'
+]])
+
+AT_CLEANUP