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