Java - Polymorphism
Identify the error in the following code snippet:
class Parent {
void display() {}
}
class Child extends Parent {
@Override
void display(int x) {}
}