blob: 932f27605ed52c0c2e18f669d93044d4ab5f6543 [file] [log] [blame]
/**
* Trivial class; must implement an interesting interface.
*/
public class Blah implements Runnable {
public void run() {
System.out.println("run");
}
}