blob: b40e732659e2cd169c699ced10affbbf73afb2a5 [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;
}
}