infinite loop
// Loop forever because we never get
// to the statement that changes x.
while (x < 3) ;
x = x +1;