[ERROR]
An attempt was made to modify an item declared with const type.
const i;
void main(void) {
i=2;
}
Do not modify this item, or declare the item without the const qualifier.