aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new/PR600/Main.java
blob: bf6ecc27ba31d6540a526073291c4176507571cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** @testcase PR#600 AbstractMethodError for introduced methods under some orderings of input files */
public class Main {
    public static void main(String[] args) {
        A a = new A();
        B b = new B();
        C c = new C();

        a.setNext(b);
        b.setNext(c);

        a.doIt();
    }
}