mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:08:52 +07:00
9 lines
132 B
Java
9 lines
132 B
Java
class A {
|
|
void test() {
|
|
Inner[] data = new Inner[]{new Inner(5)};
|
|
}
|
|
|
|
static class Inner<caret> {
|
|
Inner(int x) {}
|
|
}
|
|
} |