blob: 9d3259784c3f4ce130279d769528baedc9ad5c19 [file] [log] [blame]
// "Create Inner Class 'MyCollection'" "true"
public class Test {
public static void main() {
Collection[] cc = new MyCollection[10];
}
private static class MyCollection {
}
}