Hey KoT. In that example, EEvar1 is being used as an absolute variable using the global variable address modifier (@). The condition of using this modifier is that, the address you are tyring to hardwire it to, should not be used in any of the sections in the prm file. If you open your project prm file, under the SEGMENTS, you would see something like :
EEPROM = READ_ONLY 0x0C00 TO 0x0FFF;
The address 0xC00-0xC01 is being used by both EEvar1 and EEPROM segment.Thats why you are getting the error.
Change this to 0xC02 TO 0x0FFF and the error should disappear.