mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
9 lines
207 B
Java
9 lines
207 B
Java
// "Create Inner Class 'MyCollection'" "true"
|
|
public class Test {
|
|
public static void main() {
|
|
Collection[] cc = new MyCollection[10];
|
|
}
|
|
<caret>
|
|
private static class MyCollection {
|
|
}
|
|
} |