summaryrefslogtreecommitdiffstats
path: root/tests/bugs/interfaceDefinition/pack/InterfaceDefinition.java
blob: 980afdc5e5fca5380dcd27dbdb7b13be7c930db5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package pack;

// User Eric Jain reported that interface was somehow bad...
public class InterfaceDefinition {
    public static void main(String[] args) {
        new C().run();
    }
    public static 
    class C {
        void run() {}
    }
}