]> git.saurik.com Git - bison.git/blobdiff - examples/variant.yy
Require the generation of parse-gram.output.
[bison.git] / examples / variant.yy
index be43c60d0e592e23b1c3ddd6dd2bcf4a874c14be..d560e7dd63bb59cb92751a27cbd011b652a3b729 100644 (file)
@@ -1,7 +1,7 @@
 /* Test file for C++ parsers using variants.
    Based on an example by Michiel De Wilde <mdewilde.agilent@gmail.com>. */
 %debug
-%skeleton "lalr1-fusion.cc"
+%skeleton "lalr1.cc"
 %defines
 %define variant
 
@@ -58,7 +58,7 @@ typedef std::list<std::string> strings_type;
 %%
 
 result:
-  list          { std::cout << $1 << std::endl; }
+  list { std::cout << $1 << std::endl; }
 ;
 
 list: