Java - Inheritance
Find the error in the following code snippet:
class Parent {
final void show() {
System.out.println("Parent show");
}
}
class Child extends Parent {
void show() {
System.out.println("Child show");
}
}