blob: aec11148923fda51c4c40b98155e7f7d0cee758b [file] [log] [blame]
// "Create Inner Class 'MyCollection'" "true"
import java.util.*;
public interface I {
public static void main() {
Collection c = new MyCollection(1, "test");
}
static class MyCollection implements Collection {
public MyCollection(int i, String test) {
}
}
}