1 %name foo
2 %tokentype { Token }
3 
4 %%
5 
6 foo : 'a' { }
7 
8 bar : 'a' { }
9 
10 foo : 'b' { }
11