Java - Polymorphism
Identify the error in this code related to polymorphism:
class Parent { void show() {} } class Child extends Parent { void show(int x) {} } public class Test { public static void main(String[] args) { Parent p = new Child(); p.show(); } }