You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestWithMissing.java 271B

123456789101112131415
  1. public class TestWithMissing {
  2. public void invoke () {
  3. Interface i = new Missing();
  4. i.interfaceMethod();
  5. Missing m = new Missing();
  6. m.interfaceMethod();
  7. m.missingMethod();
  8. }
  9. public static void main(String[] args) {
  10. new TestWithMissing().invoke();
  11. }
  12. }