summaryrefslogtreecommitdiffstats
path: root/tests/069-field-type/src/Blah.java
blob: fd98336461549722921cbc7ba4731a6eb96d7629 (plain)
1
2
3
4
5
6
7
8
9

/**
 * Trivial class; must implement an interesting interface.
 */
public class Blah implements Runnable {
    public void run() {
        System.out.println("run");
    }
}