fork download
  1. class Base {
  2. }
  3. class Derived extends Base {
  4. }
  5. class Example {
  6. public static void main(String[] args) {
  7. Derived d = new Derived();
  8. System.out.println("Worked");
  9. }
  10. }
  11.  
Success #stdin #stdout 0.05s 27812KB
stdin
Standard input is empty
stdout
Worked