Anybody seen this?

Using a PIC18F25J50

Trying to compile I get the following error:
Error[115] c:\path...\testpic.asm 45 : Duplicate label ("R1" or redefining symbol that cannot be redefined)

This is my code:
Code:
test:

      TOGGLE PORTC.0
      PAUSE 500
      GOTO test

END