mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
23 lines
278 B
Java
23 lines
278 B
Java
class Test {
|
|
class <caret>A implements Runnable {
|
|
public A(int[] args) {
|
|
|
|
for (int arg : args) {
|
|
System.out.println(arg);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
public void run() {
|
|
|
|
}
|
|
}
|
|
|
|
abstract class U {
|
|
{
|
|
A a = new A(new int[8]);
|
|
}
|
|
}
|
|
|
|
} |