blob: 1bffff6c40b9875b784a42818eecd8ef4dd54353 [file] [log] [blame]
/**
* Trivial class; must implement an interesting interface.
*/
public class Blah implements Comparable {
public int compareTo(Object another) {
System.out.println("In compareTo");
return 0;
}
}