```antlr expression : ID # alt1 ; expression2 // expected error (too few alt labels) options { baseContext = expression; } : ID ; ID : [a-z]+; ```