
|
If you were logged in you would be able to see more operations.
|
|
|
ANTLR v3
Created: 13/Mar/07 06:21 PM
Updated: 10/Apr/07 12:57 PM
|
|
| Component/s: |
ANTLR Core
|
| Affects Version/s: |
3.0b6
|
| Fix Version/s: |
3.0b7
|
|
|
54. int LA3_1 = input.LA(3);
^---^
*** Semantic Error: Duplicate declaration of local variable "LA3_1".
from:
grammar T;
/* WORKS:
a : (A | B | ) X Y
| (A | B | ) X Z
;
*/
// does NOT compile
a : (| A | B) X Y
| (| A | B) X Z
;
|
|
Description
|
54. int LA3_1 = input.LA(3);
^---^
*** Semantic Error: Duplicate declaration of local variable "LA3_1".
from:
grammar T;
/* WORKS:
a : (A | B | ) X Y
| (A | B | ) X Z
;
*/
// does NOT compile
a : (| A | B) X Y
| (| A | B) X Z
;
|
Show » |
|