class Test { public static void main(String[] args) { Shape s = new Rectangle(2, 3, 4, 5); //Rectangle r = s; System.out.println(s); } }