Java - Polymorphism
Identify the error in this code related to runtime polymorphism:
class Base { void show() { System.out.println("Base"); } } class Derived extends Base { static void show() { System.out.println("Derived"); } } public class Test { public static void main(String[] args) { Base b = new Derived(); b.show(); } }