// A grammar that is LALR(2) but not LALR(1) // CUP will fail on this grammar because it is limited to 1 symbol of lookahead terminal Object n, x, y, z, g; non terminal Object S, A, B; start with S; S ::= n A x y | n B x z ; A ::= g ; B ::= g ;