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.

Main.java 310B

1234567891011121314
  1. /** @testcase PR#600 AbstractMethodError for introduced methods under some orderings of input files */
  2. public class Main {
  3. public static void main(String[] args) {
  4. A a = new A();
  5. B b = new B();
  6. C c = new C();
  7. a.setNext(b);
  8. b.setNext(c);
  9. a.doIt();
  10. }
  11. }