summaryrefslogtreecommitdiff
path: root/tests/069-field-type/src2/Blah.java
blob: 1bffff6c40b9875b784a42818eecd8ef4dd54353 (plain)
1
2
3
4
5
6
7
8
9
10

/**
 * Trivial class; must implement an interesting interface.
 */
public class Blah implements Comparable {
    public int compareTo(Object another) {
        System.out.println("In compareTo");
        return 0;
    }
}