Java - Encapsulation
Identify the error in the following Java code snippet:
class Car {
private int speed;
public void setSpeed(int speed) {
speed = speed;
}
public int getSpeed() {
return speed;
}
}