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