blob: e1b14851d1e294002315eb2bd058ab80b6c0acbd [file] [log] [blame]
public class Client {
public static void main(String[] args) {
Base obj = new Derived();
System.out.println(obj.getValue());
}
}