Serial.println and delay incompatibility!

Hi,
this simple sketch return an error "id.exe" and "collect2.exe: error: ld returned 5 exit status" if insert last line "delay(200);" Why?
If I remove "delay" no error!

void setup() {
// put your setup code here, to run once:
Serial.begin(19200);
}
void loop() {
// put your main code here, to run repeatedly:
int sensorValue = analogRead(A0);
float voltage = sensorValue * (5.03/1023);
Serial.println(voltage,3);
delay(200);
}

What Arduino? What version of the IDE?

Compiled OK for me for the Uno under IDE 1.0 on the Mac.

qartveli xar

Hi,
I test on 1.6.3 and 1.6.5 on two PC with XP.
Thanks for reply, I try on the Mac

rati:
qartveli xar

This is the English language part of the forum, buddy.

Hi,
on imac works without errors...
The problem is only on Windows XP